diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-03-12 14:02:05 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-03-12 14:02:05 +1100 |
| commit | 097e23dde42613a0430f85c087dee9377f2e91af (patch) | |
| tree | 3d4dfab25a27229cc8614febca5c4dec522c8b7e /src/env.d.ts | |
| parent | 542b2866682642f73ffd5ba6917f94c8c54603a0 (diff) | |
Make basic conversion to typescript
Diffstat (limited to 'src/env.d.ts')
| -rw-r--r-- | src/env.d.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/env.d.ts b/src/env.d.ts new file mode 100644 index 0000000..45d515f --- /dev/null +++ b/src/env.d.ts @@ -0,0 +1,7 @@ +/// <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 +} |
