vroom-react
Version:
Vroom React UI
19 lines (17 loc) • 675 B
text/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>
}