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