mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-12-23 08:26:32 +08:00
f4c4cf7d9f
Squash merge branch 'fix/eslint' into 'develop' fix eslint error Co-author: pengYYYYY <pengyue970715@gmail.com>
7 lines
240 B
TypeScript
7 lines
240 B
TypeScript
declare module '*.vue' {
|
|
import { DefineComponent } from 'vue';
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
|
|
const component: DefineComponent<{}, {}, any>;
|
|
export default component;
|
|
}
|