mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 07:08:23 +08:00
b322bceefc
Squash merge branch 'fix/eslint/constnaming' into 'develop' fix: const naming
18 lines
308 B
TypeScript
18 lines
308 B
TypeScript
|
|
// 通用声明
|
|
declare type ClassName = { [className: string]: any } | ClassName[] | string;
|
|
|
|
declare interface ImportMeta {
|
|
env: {
|
|
MODE: 'mock' | 'development' | 'test' | 'release';
|
|
};
|
|
glob: (url: string) => {};
|
|
}
|
|
|
|
declare module '*.svg' {
|
|
const CONTENT: string;
|
|
export default CONTENT;
|
|
}
|
|
|
|
|