-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathenv.d.ts
25 lines (21 loc) · 924 Bytes
/
env.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/// <reference types="vite/client" />
import '@vue/runtime-core'
export {}
declare module '@vue/runtime-core' {
export interface GlobalComponents {
THeader: typeof import("~/components/THeader.vue")['default']
TEditor: typeof import("~/components/TEditor.vue")['default']
THelpBox: typeof import("~/components/THelpBox.vue")['default']
TViewerCode: typeof import("~/components/TViewerCode.vue")['default']
TViewerJson: typeof import("~/components/TViewerJson.vue")['default']
TViewerNormal: typeof import("~/components/TViewerNormal.vue")['default']
TViewerTable: typeof import("~/components/TViewerTable.vue")['default']
JsonViewer: typeof import("vue-json-viewer")['default']
Terminal: typeof import("~/Terminal.vue")['default']
}
}
declare module "*.vue" {
import { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
export default component;
}