Reformatted

This commit is contained in:
CharlieDigital
2022-01-15 12:00:02 -05:00
parent 55903c0623
commit 32a4fd15e2
4 changed files with 49 additions and 38 deletions

8
web/src/env.d.ts vendored
View File

@@ -1,8 +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
import { DefineComponent } from 'vue'
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>
export default component
}