@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
23 lines (22 loc) • 459 B
TypeScript
import Input from './Input';
import InputType from './InputType';
/**
* @export
* @class HlsInput
*/
export declare class HlsInput extends Input {
/**
* Discriminator property for Input
* @type {string}
* @memberof HlsInput
*/
readonly type: InputType;
/**
* URL of HLS input
* @type {string}
* @memberof HlsInput
*/
url?: string;
constructor(obj?: Partial<HlsInput>);
}
export default HlsInput;