import { Http } from '@angular/http'; import 'rxjs/add/operator/map'; import 'rxjs/add/operator/catch'; import { Store } from '@ngrx/store'; import { Observable } from 'rxjs/Observable'; import { APIDispatcher, APIRequestOptions } from '../utils/index'; import { LoopScenarioState } from '../states/loop-scenario.state'; export declare class LoopScenarioService extends APIDispatcher { http: Http; store: Store; constructor(http: Http, store: Store); fetch(identities: string[]): Observable; fetchForStore(identities: string[]): any; query(page?: number, size?: number, options?: APIRequestOptions): Observable; getNextPage(): void; find(identity: string): Observable; /** * Toggles the selection of a scenario * * @param {string} identity The identity of the scenario * * @memberOf LoopScenarioService */ selectEntry(identity: string): void; /** * Resets the entries in the app-state slice for Loop Documents * * * @memberOf LoopDocumentService */ resetEntries(): void; /** * Resets the selected entries in the app-state slice for Loop Documents * * * @memberOf LoopDocumentService */ resetSelectedEntries(): void; }