/
githubmirror
/
element
Обзор
Документация
Войти
/
githubmirror
/
element
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
types/component.d.ts
13 строк
433 B
Axel Manuel
Carbon: Remove implicit any from .d.ts
27 окт 2017, 10:53
27 окт 2017, 10:53
d180ec5
Код
Авторство
О чём код?
import Vue from 'vue' /** ElementUI component common definition */ export declare class ElementUIComponent extends Vue { /** Install component into Vue */ static install (vue: typeof Vue): void } /** Component size definition for button, input, etc */ export type ElementUIComponentSize = 'large' | 'medium' | 'small' | 'mini' /** Horizontal alignment */ export type ElementUIHorizontalAlignment = 'left' | 'center' | 'right'