shims-uni.d.ts 327 B

1234567891011121314
  1. /*
  2. * @Author: wjc
  3. * @Date: 2024-06-05 15:57:41
  4. * @LastEditors: wjc
  5. * @LastEditTime: 2024-06-05 17:42:44
  6. * @Description:
  7. */
  8. /// <reference types='@dcloudio/types' />
  9. import 'vue'
  10. declare module '@vue/runtime-core' {
  11. type Hooks = App.AppInstance & Page.PageInstance
  12. interface ComponentCustomOptions extends Hooks {}
  13. }