global-components.d.ts 244 B

123456789
  1. export {};
  2. /* prettier-ignore */
  3. declare module 'vue' {
  4. export interface GlobalComponents {
  5. AButton: typeof import('ant-design-vue/es/button')['default'];
  6. GhostButton: typeof import('#/components/global/button')['GhostButton']
  7. }
  8. }