9 lines
228 B
TypeScript
9 lines
228 B
TypeScript
import { FC } from 'react';
|
|
import './index.less';
|
|
export interface ILoading {
|
|
status: 'LOADING' | 'COMPLETED' | 'END' | 'ERROR' | null;
|
|
reload: () => void;
|
|
}
|
|
declare const Loading: FC<ILoading>;
|
|
export default Loading;
|