update typings

This commit is contained in:
Leopoldthecoder
2017-10-18 18:31:03 +08:00
committed by Black Wayne
parent 4f9515494c
commit 1e95e51f9b
91 changed files with 740 additions and 233 deletions

4
types/tabs.d.ts vendored
View File

@@ -1,6 +1,7 @@
import { ElementUIComponent } from './component'
export type TabType = 'card' | 'border-card'
export type TabPosition = 'top' | 'right' | 'bottom' | 'left'
/** Divide data collections which are related yet belong to different types */
export declare class ElTabs extends ElementUIComponent {
@@ -18,4 +19,7 @@ export declare class ElTabs extends ElementUIComponent {
/** Name of the selected tab */
value: string
/** Position of tabs */
tabPosition: TabPosition
}