/** * This is an auto generate file from fireback project. * You can use this in order to communicate in backend, it gives you available actions, * and their types * Module: geo */ import * as geo from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class GeoStateActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isGeoStateEntityEqual(a: geo.GeoStateEntity, b: geo.GeoStateEntity): boolean; static getGeoStateEntityPrimaryKey(a: geo.GeoStateEntity): string; query(complexSqlAlike: string): GeoStateActions; static fn(options: RemoteRequestOption): GeoStateActions; static fnExec(fn: ExecApi): GeoStateActions; uniqueId(id: string): GeoStateActions; deep(deep?: boolean): GeoStateActions; withPreloads(withPreloads: string): GeoStateActions; sort(sortFields: string | string[]): GeoStateActions; startIndex(offset: number): GeoStateActions; itemsPerPage(limit: number): GeoStateActions; get paramsAsString(): string; getGeoStates(): Promise>; getGeoStateByUniqueId(uniqueId: string): Promise>; postGeoState(entity: geo.GeoStateEntity): Promise>; patchGeoState(entity: geo.GeoStateEntity): Promise>; patchGeoStates(entity: core.BulkRecordRequest): Promise>; deleteGeoState(entity: core.DeleteRequest): Promise; }