unibest/src/shime-uni.d.ts

15 lines
212 B
TypeScript
Raw Normal View History

2023-12-21 15:26:15 +08:00
export {}
declare module 'vue' {
type Hooks = App.AppInstance & Page.PageInstance
2024-01-30 17:37:18 +08:00
interface ComponentCustomOptions extends Hooks {
$uv?: any
}
}
declare global {
interface Uni {
$uv?: any
}
}