@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
24 lines (21 loc) • 634 B
TypeScript
import { LayoutType } from '../enums/LayoutType.js';
/**
* Represents the layout configuration for an archive.
*/
type ArchiveLayout = {
/**
* The type of layout to be used for the archive.
*/
type: LayoutType;
/**
* Optional: The stylesheet used for custom layout (only applicable if type is 'custom').
*/
stylesheet?: string;
/**
* Optional: The screenshare layout type to use when there is a screen-sharing
* stream in the archive (only applicable if type is 'bestFit' and
* screenshareType is set).
*/
screenshareType?: string;
};
export type { ArchiveLayout };