@tencentcloud/call-uikit-react
Version:
An Open-source Voice & Video Calling UI Component Based on Tencent Cloud Service.
16 lines (11 loc) • 313 B
text/typescript
import { FunctionComponent } from 'react';
export 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';