/** * Created by Christophe on 11/01/2018. */ import { DrupalInterface } from "./drupal-interface.class"; import { Http } from "@angular/http"; import { DataManagerService } from "../data-manager.service"; import { LocalFileInterfaceConfig } from "./local-file-interface-config.interface"; import { Observable } from "rxjs/Rx"; import { DataEntityCollection } from "../data-entity-collection.class"; export declare class LocalFileInterface extends DrupalInterface { private localFileConf; constructor(http: Http, manager: DataManagerService, localFileConf: LocalFileInterfaceConfig); getJsonPath(entityType: string): string; loadEntityCollection(entityType: string, fields?: Array, params?: Object): Observable; }