hf-star-history / src /env.d.ts
thomwolf's picture
thomwolf HF Staff
pushing code
0326339
raw
history blame
181 Bytes
// Declare vue component type
declare module "*.vue" {
import { defineComponent } from "vue";
const component: ReturnType<typeof defineComponent>;
export default component;
}