7 lines
383 B
TypeScript
7 lines
383 B
TypeScript
|
|
import { IWithDurationBadgePlayerProps } from "../with-duration-badge";
|
||
|
|
export interface IWithErrorsVideoPlayerProps extends IWithDurationBadgePlayerProps {
|
||
|
|
showErrors?: boolean;
|
||
|
|
}
|
||
|
|
declare const WithErrors: ({ showErrors, children, ...props }: IWithErrorsVideoPlayerProps) => import("react/jsx-runtime").JSX.Element;
|
||
|
|
export default WithErrors;
|
||
|
|
//# sourceMappingURL=index.d.ts.map
|