@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
23 lines (22 loc) • 506 B
TypeScript
import Output from './Output';
import OutputType from './OutputType';
/**
* @export
* @class LocalOutput
*/
export declare class LocalOutput extends Output {
/**
* Discriminator property for Output
* @type {string}
* @memberof LocalOutput
*/
readonly type: OutputType;
/**
* Path to your local storage (required)
* @type {string}
* @memberof LocalOutput
*/
path?: string;
constructor(obj?: Partial<LocalOutput>);
}
export default LocalOutput;