/** * @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); } export default DisplayAspectRatio;