loader.d.ts 264 B

1234567891011121314
  1. import { App } from 'vue';
  2. import type { ApplicationConfig } from '@/request/model';
  3. export {};
  4. /* prettier-ignore */
  5. declare global {
  6. export namespace DEV {
  7. export interface Loader {
  8. (app: App, config: ApplicationConfig): Promise<any>;
  9. }
  10. }
  11. }