1.将class定义方式修改为interface定义,方面未来扩展

2.补全失的导入导出类型
This commit is contained in:
yangd 2018-09-03 09:15:30 +08:00
parent 8ecc0312c3
commit 4a2af4f570
59 changed files with 158 additions and 158 deletions

6
types/notice.d.ts vendored
View file

@ -4,7 +4,7 @@
// Definitions: https://github.com/yangdan8/iview.git
import Vue, { VNode, CreateElement } from "vue";
export declare class Notice {
export declare interface Notice {
/**
*
* @param config NoticeConfig为相关配置,string为待显示的内容
@ -44,7 +44,7 @@ export declare class Notice {
destroy(): void;
}
export declare class NoticeConfig {
export declare interface NoticeConfig {
/**
*
*/
@ -71,7 +71,7 @@ export declare class NoticeConfig {
onClose?: Function;
}
export declare class NoticeGlobalConfig {
export declare interface NoticeGlobalConfig {
/**
* 24
*/