mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 10:38:23 +08:00
75df4f1672
* feat: update eslint config and npmpkg * feat: update color config * feat: eslint update * feat: update ts config Co-authored-by: yue.peng <yue.peng@ly.com> Co-authored-by: pengYYYYY <pengyue970715@gmail.com>
15 lines
305 B
TypeScript
15 lines
305 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;
|
|
}
|