UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

21 lines (20 loc) 628 B
/** * @export * @class DisplayAspectRatio */ export declare class DisplayAspectRatio { /** * The numerator of the display aspect ratio (DAR). For example for a DAR of 16:9, the value 16 must be used. (required) * @type {number} * @memberof DisplayAspectRatio */ numerator?: number; /** * The denominator of the display aspect ratio (DAR). For example for a DAR of 16:9, the value 9 must be used. (required) * @type {number} * @memberof DisplayAspectRatio */ denominator?: number; constructor(obj?: Partial<DisplayAspectRatio>); } export default DisplayAspectRatio;