Files
vue3-element-admin/types/global.d.ts
haoxr f2c7ec3c74 fix: 添加全局类型导出
Former-commit-id: 83969de6fec67ec16265ed61d6d661dfae39c128
2022-12-18 13:27:29 +08:00

24 lines
353 B
TypeScript

declare global {
interface PageQuery {
pageNum: number;
pageSize: number;
}
interface PageResult<T> {
list: T;
total: number;
}
type DialogType = {
title?: string;
visible: boolean;
};
type OptionType = {
value: string;
label: string;
checked?: boolean;
children?: OptionType[];
};
}
export {};