diff options
author | 2025-04-22 13:05:13 +0200 | |
---|---|---|
committer | 2025-04-22 12:05:13 +0100 | |
commit | a19a185efd75334f2f417b433fcfaa0017fe41ee (patch) | |
tree | 853831aa7f68a8e0ee1aab0b231ba5d22b42c61c /packages/integrations/vue/env.d.ts | |
parent | 620d15d8483dfb1822cd47833bc1653e0b704ccb (diff) | |
download | astro-a19a185efd75334f2f417b433fcfaa0017fe41ee.tar.gz astro-a19a185efd75334f2f417b433fcfaa0017fe41ee.tar.zst astro-a19a185efd75334f2f417b433fcfaa0017fe41ee.zip |
feat: convert integrations to TS (#13663)
Diffstat (limited to '')
-rw-r--r-- | packages/integrations/vue/env.d.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/integrations/vue/env.d.ts b/packages/integrations/vue/env.d.ts new file mode 100644 index 000000000..3a0052dca --- /dev/null +++ b/packages/integrations/vue/env.d.ts @@ -0,0 +1,3 @@ +declare module 'virtual:@astrojs/vue/app' { + export const setup: (app: import('vue').App<Element>) => void | Promise<void>; +}
\ No newline at end of file |