2022-09-13 01:33:24 +00:00
|
|
|
declare module "*.vue" {
|
2022-12-10 18:59:36 +00:00
|
|
|
import { defineComponent } from "vue";
|
|
|
|
const Component: ReturnType<typeof defineComponent>;
|
|
|
|
export default Component;
|
2022-09-13 01:33:24 +00:00
|
|
|
}
|
|
|
|
|
2022-10-28 19:08:34 +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;
|
|
|
|
}
|