e5core-angular-ui
Version:
e5 Anywhere Angular UI
10 lines (9 loc) • 403 B
TypeScript
import { ListSearchService, ListItemModel } from 'e5core-angular-services';
import { KeyValuePair } from '../util/key-value-pair';
import { BehaviorSubject } from 'rxjs';
export declare class CachedListSearchService {
private listService;
cache: KeyValuePair[];
constructor(listService: ListSearchService);
search(listId: any, options: any): BehaviorSubject<ListItemModel[]>;
}