vroom-react
Version:
Vroom React UI
18 lines (17 loc) • 717 B
TypeScript
import React from 'react';
export interface SdkStateGlobalBase {
stateAll: any;
setStateAll: React.Dispatch<React.SetStateAction<any>>;
cameraList: MediaDeviceInfo[];
setCameraList: React.Dispatch<React.SetStateAction<Array<MediaDeviceInfo>>>;
currentCamera: MediaDeviceInfo | undefined;
setCurrentCamera: React.Dispatch<React.SetStateAction<MediaDeviceInfo | any>>;
participants: any[];
setParticipants: React.ReducerWithoutAction<any>;
attendees: any[];
setAttendees: React.ReducerWithoutAction<any>;
publisherVideos: string;
setPublisherVideos: React.ReducerWithoutAction<any>;
publisherAudios: string;
setPublisherAudios: React.ReducerWithoutAction<any>;
}