fix: 添加全局类型导出

Former-commit-id: 83969de6fec67ec16265ed61d6d661dfae39c128
This commit is contained in:
haoxr
2022-12-18 13:27:29 +08:00
parent b127b3d97b
commit f2c7ec3c74

3
types/global.d.ts vendored
View File

@@ -8,7 +8,6 @@ declare global {
list: T;
total: number;
}
type DialogType = {
title?: string;
visible: boolean;
@@ -20,5 +19,5 @@ declare global {
checked?: boolean;
children?: OptionType[];
};
}
export {};