createVideoConf.d.ts 356 B

1234567891011121314
  1. export interface CreateVideoConfParams {
  2. title: string;
  3. calleeCorpId?: string;
  4. calleeUids?: string[];
  5. }
  6. declare function createVideoConf(args: CreateVideoConfParams): Promise<void>;
  7. declare namespace createVideoConf {
  8. var version: {
  9. android: string;
  10. ios: string;
  11. pc: string;
  12. };
  13. }
  14. export default createVideoConf;