@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
24 lines (22 loc) • 509 B
TypeScript
/**
* Represents the details of a single stream layout.
*/
type SingleStreamLayoutResponse = {
/**
* The unique identifier of the stream layout.
*/
id: string;
/**
* The type of video associated with the stream layout.
*/
videoType: string;
/**
* The name of the stream layout.
*/
name: string;
/**
* An array of CSS class names associated with the layout.
*/
layoutClassList: string[];
};
export type { SingleStreamLayoutResponse };