components.d.ts 286 B

1234567891011121314
  1. // For this project development
  2. import '@vue/runtime-core';
  3. declare module '@vue/runtime-core' {
  4. // GlobalComponents for Volar
  5. export interface GlobalComponents {
  6. KKAudio: typeof import('./component/audio');
  7. }
  8. // interface ComponentCustomProperties {
  9. // }
  10. }
  11. export {};