custom-react-player
Version:
Customizable react video player
6 lines (5 loc) • 384 B
TypeScript
import { PropsWithChildren } from 'react';
import { type PlayerContext } from '../types';
export declare const DefaultPlayerState: PlayerContext;
export declare const PContext: import("react").Context<PlayerContext>;
export declare function PlayerContextProvider({ state, children, }: PropsWithChildren<Omit<PlayerContext, 'setState'>>): import("react/jsx-runtime").JSX.Element;