11 lines
204 B
TypeScript
11 lines
204 B
TypeScript
/// <reference types='@dcloudio/types' />
|
|
import 'vue'
|
|
|
|
declare module '@vue/runtime-core' {
|
|
type Hooks = App.AppInstance & Page.PageInstance;
|
|
|
|
interface ComponentCustomOptions extends Hooks {
|
|
|
|
}
|
|
}
|