UNPKG

@vonage/video

Version:

Package to interact with the Vonage Video API (Not OpenTok Compatible)

15 lines 509 B
import { SingleStreamLayoutResponse } from './SingleStreamLayoutResponse'; /** * Represents a response containing multiple SingleStreamLayoutResponse items. */ export type MultiStreamLayoutResponse = { /** * The count of SingleStreamLayoutResponse items in the response. */ count: number; /** * An array of SingleStreamLayoutResponse objects representing individual items. */ items: SingleStreamLayoutResponse[]; }; //# sourceMappingURL=MultiStreamLayoutResponse.d.ts.map