diff options
author | Helianthella <git@gumi.ca> | 2020-12-22 22:24:05 -0500 |
---|---|---|
committer | Helianthella <git@gumi.ca> | 2020-12-22 22:24:05 -0500 |
commit | a56dbd9b55890c0bd30099965f554f74b8bd88c6 (patch) | |
tree | 799e3b46113f5740a0d94171ab187443b88dd06b /src | |
parent | 0bcf96c9f8a36a8fe16716abf235cd90d9ef40ca (diff) | |
download | website-a56dbd9b55890c0bd30099965f554f74b8bd88c6.tar.gz website-a56dbd9b55890c0bd30099965f554f74b8bd88c6.tar.bz2 website-a56dbd9b55890c0bd30099965f554f74b8bd88c6.tar.xz website-a56dbd9b55890c0bd30099965f554f74b8bd88c6.zip |
silence some linter issues
Diffstat (limited to 'src')
-rw-r--r-- | src/shims-vue.d.ts | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/shims-vue.d.ts b/src/shims-vue.d.ts index 2b97bd9..eac132a 100644 --- a/src/shims-vue.d.ts +++ b/src/shims-vue.d.ts @@ -1,5 +1,6 @@ -declare module '*.vue' { - import type { DefineComponent } from 'vue' - const component: DefineComponent<{}, {}, any> - export default component +declare module "*.vue" { + import type { DefineComponent } from "vue" + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const component: DefineComponent<{}, {}, any> + export default component } |