UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

21 lines (20 loc) 550 B
/** * @export * @class AppliedStreamSettings */ export declare class AppliedStreamSettings { /** * The applied width. Useful if the width in the configuration was undefined * @type {number} * @memberof AppliedStreamSettings */ width?: number; /** * The applied height. Useful if the height in the configuration was undefined * @type {number} * @memberof AppliedStreamSettings */ height?: number; constructor(obj?: Partial<AppliedStreamSettings>); } export default AppliedStreamSettings;