mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 07:48:22 +08:00
86f73de893
* fix: githubactions config * fix: update build env * fix: remove cache Co-authored-by: ivringpeng <pengyue970725@gmail.com>
16 lines
355 B
TypeScript
16 lines
355 B
TypeScript
// 通用声明
|
|
declare type ClassName = { [className: string]: any } | ClassName[] | string;
|
|
|
|
declare interface ImportMeta {
|
|
env: {
|
|
MODE: 'mock' | 'development' | 'test' | 'release';
|
|
};
|
|
// eslint-disable-next-line no-unused-vars
|
|
glob: (url: string) => { url };
|
|
}
|
|
|
|
declare module '*.svg' {
|
|
const CONTENT: string;
|
|
export default CONTENT;
|
|
}
|