UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

21 lines (20 loc) 431 B
/** * @export * @class TimeSpan */ export declare class TimeSpan { /** * Start offset of the time frame in milliseconds (required) * @type {number} * @memberof TimeSpan */ from?: number; /** * End offset of the time frame in milliseconds (required) * @type {number} * @memberof TimeSpan */ to?: number; constructor(obj?: Partial<TimeSpan>); } export default TimeSpan;