promote_wechat/sfc.d.ts

10 lines
241 B
TypeScript
Raw Normal View History

2024-07-29 14:24:17 +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;
}
}