autopack_uniapp/sfc.d.ts

11 lines
242 B
TypeScript
Raw Normal View History

2022-06-29 14:08:31 +08:00
import Vue from 'vue'
declare module "vue/types/options" {
type Hooks = App.AppInstance & Page.PageInstance;
interface ComponentOptions<V extends Vue> extends Hooks {
/**
*
*/
mpType?: string;
}
}