yunshangxie-admin/globals.d.ts

14 lines
285 B
TypeScript
Raw Normal View History

2024-04-18 13:44:38 +08:00
// 通用声明
declare type ClassName = { [className: string]: any } | ClassName[] | string;
declare interface ImportMeta {
env: {
MODE: 'mock' | 'development' | 'test' | 'release' | 'site';
};
}
declare module '*.svg' {
const content: string;
export default content;
}