UNPKG

@vonage/video

Version:

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

18 lines (15 loc) 495 B
import { SingleStreamLayoutResponse } from './SingleStreamLayoutResponse.js'; /** * Represents a response containing multiple SingleStreamLayoutResponse items. */ type MultiStreamLayoutResponse = { /** * The count of SingleStreamLayoutResponse items in the response. */ count: number; /** * An array of SingleStreamLayoutResponse objects representing individual items. */ items: SingleStreamLayoutResponse[]; }; export type { MultiStreamLayoutResponse };