UNPKG

kaltura-node-typescript-client

Version:
13 lines (12 loc) 721 B
import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaESearchHistory } from './KalturaESearchHistory'; import { KalturaESearchAggregationResponseItem } from './KalturaESearchAggregationResponseItem'; import { KalturaListResponse, KalturaListResponseArgs } from './KalturaListResponse'; export interface KalturaESearchHistoryListResponseArgs extends KalturaListResponseArgs { } export declare class KalturaESearchHistoryListResponse extends KalturaListResponse { readonly objects: KalturaESearchHistory[]; readonly aggregations: KalturaESearchAggregationResponseItem[]; constructor(data?: KalturaESearchHistoryListResponseArgs); protected _getMetadata(): KalturaObjectMetadata; }