@tencentcloud/call-uikit-react
Version:
An Open-source Voice & Video Calling UI Component Based on Tencent Cloud Service.
12 lines (11 loc) • 331 B
TypeScript
import { FunctionComponent } from 'react';
export declare const classPrefix = "tk";
export type TButton = {
component: FunctionComponent;
props: {
show: boolean;
[key: string]: any;
};
};
export type TButtons = TButton[][];
export type TObjectFit = 'fill' | 'contain' | 'cover' | 'none' | 'scale-down';