7 lines
392 B
TypeScript
7 lines
392 B
TypeScript
import { IWithCoverVideoPlayerProps } from "../with-cover";
|
|
export interface IWithProcessingVideoPlayerProps extends IWithCoverVideoPlayerProps {
|
|
showProcessing?: boolean;
|
|
}
|
|
declare const WithProcessing: ({ showProcessing, children, ...props }: IWithProcessingVideoPlayerProps) => import("react/jsx-runtime").JSX.Element;
|
|
export default WithProcessing;
|
|
//# sourceMappingURL=index.d.ts.map
|