mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-19 23:54:17 +08:00
17 lines
303 B
TypeScript
17 lines
303 B
TypeScript
/// <reference types='@dcloudio/types' />
|
|
|
|
import 'vue';
|
|
|
|
declare module '@vue/runtime-core' {
|
|
type Hooks = App.AppInstance & Page.PageInstance;
|
|
|
|
interface ComponentCustomOptions extends Hooks {}
|
|
}
|
|
|
|
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
PREVIEW: any;
|
|
[key: string]: any;
|
|
}
|
|
}
|