This commit is contained in:
syuilo
2024-08-22 17:19:36 +09:00
parent f26aa0d565
commit 2398a8013d
22 changed files with 731 additions and 22 deletions

6
packages/embed/vue-shims.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
/* eslint-disable */
declare module "*.vue" {
import { defineComponent } from "vue";
const component: ReturnType<typeof defineComponent>;
export default component;
}