shime-uni.d.ts 231 B

123456789
  1. export {}
  2. declare module "vue" {
  3. type Hooks = App.AppInstance & Page.PageInstance
  4. interface ComponentCustomOptions extends Hooks {}
  5. interface ButtonHTMLAttributes {
  6. type?: "submit" | "reset" | "button" | "primary"
  7. }
  8. }