communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
45 lines • 1.19 kB
TypeScript
/**
* @public
* Corresponding texts to each call issue
*/
export interface SurveyIssues {
overallRating: {
callCannotJoin: string;
callCannotInvite: string;
hadToRejoin: string;
callEndedUnexpectedly: string;
otherIssues: string;
};
audioRating: {
noLocalAudio: string;
noRemoteAudio: string;
echo: string;
audioNoise: string;
lowVolume: string;
audioStoppedUnexpectedly: string;
distortedSpeech: string;
audioInterruption: string;
otherIssues: string;
};
videoRating: {
noVideoReceived: string;
noVideoSent: string;
lowQuality: string;
freezes: string;
stoppedUnexpectedly: string;
darkVideoReceived: string;
audioVideoOutOfSync: string;
otherIssues: string;
};
screenshareRating: {
noContentLocal: string;
noContentRemote: string;
cannotPresent: string;
lowQuality: string;
freezes: string;
stoppedUnexpectedly: string;
largeDelay: string;
otherIssues: string;
};
}
//# sourceMappingURL=SurveyIssues.d.ts.map