service.d.ts 270 B

12345678
  1. import type { LoadingInstance } from './loading';
  2. import type { LoadingOptions } from './types';
  3. import type { AppContext } from 'vue';
  4. declare const Loading: {
  5. (options?: LoadingOptions): LoadingInstance;
  6. _context: AppContext | null;
  7. };
  8. export default Loading;