@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
11 lines (10 loc) • 523 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaDeliveryProfile, KalturaDeliveryProfileArgs } from './KalturaDeliveryProfile';
export interface KalturaDeliveryProfileGenericSilverLightArgs extends KalturaDeliveryProfileArgs {
pattern?: string;
}
export declare class KalturaDeliveryProfileGenericSilverLight extends KalturaDeliveryProfile {
pattern: string;
constructor(data?: KalturaDeliveryProfileGenericSilverLightArgs);
protected _getMetadata(): KalturaObjectMetadata;
}