nicecode-v2/packages/meta/es/VideoPlayer/components/Loading/index.d.ts
2024-01-16 11:44:26 +08:00

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;