UNPKG

kaltura-node-typescript-client

Version:
11 lines (10 loc) 583 B
import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaESearchCategoryResult } from './KalturaESearchCategoryResult'; import { KalturaESearchResponse, KalturaESearchResponseArgs } from './KalturaESearchResponse'; export interface KalturaESearchCategoryResponseArgs extends KalturaESearchResponseArgs { } export declare class KalturaESearchCategoryResponse extends KalturaESearchResponse { readonly objects: KalturaESearchCategoryResult[]; constructor(data?: KalturaESearchCategoryResponseArgs); protected _getMetadata(): KalturaObjectMetadata; }