fix types for demos

This commit is contained in:
Philipp Kühn
2021-09-16 21:30:09 +02:00
parent ba283bcd43
commit 2a0a365d45
7 changed files with 320 additions and 23 deletions

8
demos/env.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
/// <reference types="vite/client" />
declare module '*.vue' {
import { DefineComponent } from 'vue'
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>
export default component
}