global.d.ts 311 B

123456789
  1. /* eslint-disable @typescript-eslint/consistent-type-imports */
  2. declare module 'vue' {
  3. export interface GlobalComponents {
  4. BasicBar: typeof import('../components')['BasicBar'];
  5. BasicLine: typeof import('../components')['BasicLine'];
  6. Title: typeof import('../components')['Title'];
  7. }
  8. }
  9. export {};