mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-06-01 14:41:39 +08:00
16 lines
302 B
TypeScript
16 lines
302 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;
|
|
}
|
|
}
|