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