From 097e23dde42613a0430f85c087dee9377f2e91af Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Sat, 12 Mar 2022 14:02:05 +1100 Subject: Make basic conversion to typescript --- src/env.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/env.d.ts (limited to 'src/env.d.ts') 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 @@ +/// +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 +} -- cgit v1.2.3