9 lines
270 B
TypeScript
9 lines
270 B
TypeScript
import type { LoadingInstance } from './loading';
|
|
import type { LoadingOptions } from './types';
|
|
import type { AppContext } from 'vue';
|
|
declare const Loading: {
|
|
(options?: LoadingOptions): LoadingInstance;
|
|
_context: AppContext | null;
|
|
};
|
|
export default Loading;
|