@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
18 lines (15 loc) • 496 B
text/typescript
import { SingleStreamLayoutResponse } from './SingleStreamLayoutResponse.mjs';
/**
* 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 };