import { KurentoEventType } from "./kurento-event"; export type KurentoMethod = "ping" | "create" | "invoke" | "release" | "subscribe" | "unsubscribe"; export type KurentoParams = { type?: "MediaPipeline" | "WebRtcEndpoint" | KurentoEventType; object?: string; operation?: string; constructorParams?: { mediaPipeline?: string; }; operationParams?: { offer?: string; sink?: string; candidate?: { candidate: string; sdpMid: string | null; sdpMLineIndex: number | null; }; }; properties?: any; sessionId?: string; };