diff --git a/shims/@rollup/plugin-beep.d.ts b/shims/@rollup/plugin-beep.d.ts new file mode 100644 index 00000000..b82f8404 --- /dev/null +++ b/shims/@rollup/plugin-beep.d.ts @@ -0,0 +1,5 @@ +// TODO: Remove this once https://github.com/rollup/plugins/pull/969 is merged +declare module '@rollup/plugin-beep' { + import { Plugin } from 'rollup'; + export default function beep(): Plugin; +} diff --git a/shims/vue.d.ts b/shims/vue.d.ts new file mode 100644 index 00000000..b2b40c60 --- /dev/null +++ b/shims/vue.d.ts @@ -0,0 +1,7 @@ +declare module '*.vue' { + import type { App, DefineComponent, Plugin } from 'vue'; + const component: DefineComponent<{}, {}, any> & { + install(app: App): Exclude; + }; + export default component; +}