461b7d3d1a00aabd9584f9d23ad45ea5f96f2d187222643acf347794406eb5903ee952814bbd27972b4d5bde03266e4d7b244091ed54af848ce95062a09c70 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;