2023-04-19 23:14:30 +00:00
|
|
|
declare module '*.vue' {
|
|
|
|
import type { defineComponent } from 'vue';
|
2022-12-10 18:59:36 +00:00
|
|
|
const Component: ReturnType<typeof defineComponent>;
|
|
|
|
export default Component;
|
2022-09-13 01:33:24 +00:00
|
|
|
}
|
|
|
|
|
2023-04-19 23:14:30 +00:00
|
|
|
declare module '*.svg' {
|
2022-12-10 18:59:36 +00:00
|
|
|
const content: string;
|
2022-10-28 19:08:34 +00:00
|
|
|
export default content;
|
|
|
|
}
|