kaltura-node-typescript-client
Version:
Kaltura Node Typescript client
13 lines (12 loc) • 657 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaDeliveryProfileLivePackager, KalturaDeliveryProfileLivePackagerArgs } from './KalturaDeliveryProfileLivePackager';
export interface KalturaDeliveryProfileLivePackagerHlsArgs extends KalturaDeliveryProfileLivePackagerArgs {
disableExtraAttributes?: boolean;
forceProxy?: boolean;
}
export declare class KalturaDeliveryProfileLivePackagerHls extends KalturaDeliveryProfileLivePackager {
disableExtraAttributes: boolean;
forceProxy: boolean;
constructor(data?: KalturaDeliveryProfileLivePackagerHlsArgs);
protected _getMetadata(): KalturaObjectMetadata;
}