chore: support uni hooks code prompt when options API

This commit is contained in:
zhenyuWang 2023-02-09 21:08:55 +08:00
parent 9c06ff9d31
commit c768ac9388

6
src/shime-uni.d.ts vendored Normal file
View File

@ -0,0 +1,6 @@
export {};
declare module "vue" {
type Hooks = App.AppInstance & Page.PageInstance;
interface ComponentCustomOptions extends Hooks {}
}