nidus-sync/ts/vue-shim.d.ts
Eli Ribble 03301518f0
TypeScript checking is clean.
Tons and tons of broken functionality. Now the crawl begins.
2026-03-22 02:55:17 +00:00

5 lines
155 B
TypeScript

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