更新d.ts file到3.3.0版本

This commit is contained in:
yang 2019-03-12 11:30:07 +08:00
parent 33b3672e00
commit 6d84588919
60 changed files with 139 additions and 66 deletions

15
types/layout.d.ts vendored
View file

@ -1,4 +1,4 @@
// Type definitions for iview 3.1.0
// Type definitions for iview 3.3.0
// Project: https://github.com/iview/iview
// Definitions by: yangdan
// Definitions: https://github.com/yangdan8/iview.git
@ -8,11 +8,12 @@ export declare interface Layout extends Vue {
/**
* xs,sm,md,lg,xl或xxl
* {
* xs?: '480px',
* sm?: '768px',
* md?: '992px',
* lg?: '1200px',
* xl?: '1600px'
* xs: '480px',
* sm: '576px',
* md: '768px',
* lg: '992px',
* xl: '1200px',
* xxl: '1600px'
* }
*/
breakpoint?: string;
@ -69,4 +70,4 @@ export declare interface Layout extends Vue {
* methods, Sider展开-
*/
toggleCollapse(): void;
}
}·