@100mslive/hms-video-store
Version:
@100mslive Core SDK which abstracts the complexities of webRTC while providing a reactive store for data management with a unidirectional data flow
12 lines (11 loc) • 379 B
TypeScript
import { HMSSessionFeedback, HMSSessionInfo } from './interface';
export declare class FeedbackService {
private static TAG;
private static handleError;
static sendFeedback({ token, eventEndpoint, info, feedback, }: {
token: string;
eventEndpoint?: string;
info: HMSSessionInfo;
feedback?: HMSSessionFeedback;
}): Promise<void>;
}