UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

26 lines (25 loc) 482 B
import Atmosphere from './Atmosphere'; import Location from './Location'; /** * @export * @class Setting */ export declare class Setting { /** * @type {Location} * @memberof Setting */ location?: Location; /** * @type {string} * @memberof Setting */ timeOfDay?: string; /** * @type {Atmosphere} * @memberof Setting */ atmosphere?: Atmosphere; constructor(obj?: Partial<Setting>); } export default Setting;