nidus-sync/ts/vue-shim.d.ts

6 lines
155 B
TypeScript
Raw Normal View History

declare module "*.vue" {
import type { DefineComponent } from "vue";
const component: DefineComponent<object, object, any>;
export default component;
}