Commit 054a8eebe2cad76d6326ace7d550bdeba0863eab

Authored by Aresn
Committed by GitHub
2 parents 0ad95539 12c24293

Merge pull request #5802 from yangdan8/修复部分d.ts定义问题

修复部分d.ts定义问题
types/loading-bar.d.ts
@@ -6,7 +6,7 @@ import Vue from 'vue'; @@ -6,7 +6,7 @@ import Vue from 'vue';
6 6
7 export const LoadingBar: LoadingBarClass; 7 export const LoadingBar: LoadingBarClass;
8 8
9 -export declare class LoadingBarClass { 9 +export declare class LoadingBarClass extends Vue {
10 /** 10 /**
11 * 开始从 0 显示进度条,并自动加载进度 11 * 开始从 0 显示进度条,并自动加载进度
12 */ 12 */
types/message.d.ts
@@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
4 // Definitions: https://github.com/yangdan8/iview.git 4 // Definitions: https://github.com/yangdan8/iview.git
5 import Vue, { VNode, CreateElement } from "vue"; 5 import Vue, { VNode, CreateElement } from "vue";
6 6
7 -export declare class Message { 7 +export declare class Message extends Vue {
8 /** 8 /**
9 * 消息 9 * 消息
10 * @param config MessageConfig为相关配置,string为待显示的内容 10 * @param config MessageConfig为相关配置,string为待显示的内容
@@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
4 // Definitions: https://github.com/yangdan8/iview.git 4 // Definitions: https://github.com/yangdan8/iview.git
5 import Vue, { VNode, CreateElement } from "vue"; 5 import Vue, { VNode, CreateElement } from "vue";
6 6
7 -export declare class Modal { 7 +export declare class Modal extends Vue {
8 /** 8 /**
9 * 对话框是否显示,可使用 v-model 双向绑定数据。 9 * 对话框是否显示,可使用 v-model 双向绑定数据。
10 * @default false 10 * @default false
@@ -128,7 +128,7 @@ export declare class Modal { @@ -128,7 +128,7 @@ export declare class Modal {
128 }; 128 };
129 } 129 }
130 130
131 -export declare class ModalInstance { 131 +export declare class ModalInstance extends Modal {
132 /** 132 /**
133 * 消息 133 * 消息
134 * @param config ModalConfig为相关配置,string为待显示的内容 134 * @param config ModalConfig为相关配置,string为待显示的内容
@@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
4 // Definitions: https://github.com/yangdan8/iview.git 4 // Definitions: https://github.com/yangdan8/iview.git
5 import Vue, { VNode, CreateElement } from "vue"; 5 import Vue, { VNode, CreateElement } from "vue";
6 6
7 -export declare class Notice { 7 +export declare class Notice extends Vue {
8 /** 8 /**
9 * 打开 9 * 打开
10 * @param config NoticeConfig为相关配置,string为待显示的内容 10 * @param config NoticeConfig为相关配置,string为待显示的内容