/** * Contains details about the output's video stream */ export interface _VideoDetail { /** * Height in pixels for the output */ HeightInPx?: number; /** * Width in pixels for the output */ WidthInPx?: number; } export declare type _UnmarshalledVideoDetail = _VideoDetail;