13 lines
538 B
TypeScript
Raw Normal View History

import * as React from "react";
2021-02-20 18:55:36 +01:00
import { Registry } from "tc-shared/events";
import { ChannelVideoEvents } from "./Definitions";
2021-05-01 23:38:36 +02:00
export declare const VideoIdContext: React.Context<string>;
export declare const RendererVideoEventContext: React.Context<Registry<ChannelVideoEvents>>;
export declare const VideoContainer: React.MemoExoticComponent<(props: {
isSpotlight: boolean;
}) => JSX.Element>;
2021-02-20 18:55:36 +01:00
export declare const ChannelVideoRenderer: (props: {
handlerId: string;
events: Registry<ChannelVideoEvents>;
}) => JSX.Element;