14 lines
424 B
TypeScript
14 lines
424 B
TypeScript
declare module "@/views/KolDashboardView.vue" {
|
|
import type { DefineComponent } from "vue";
|
|
|
|
const component: DefineComponent<Record<string, never>, Record<string, never>, any>;
|
|
export default component;
|
|
}
|
|
|
|
declare module "@/views/KolGenerateView.vue" {
|
|
import type { DefineComponent } from "vue";
|
|
|
|
const component: DefineComponent<Record<string, never>, Record<string, never>, any>;
|
|
export default component;
|
|
}
|