/** * 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: currency */ import * as currency from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class CurrencyActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isCurrencyEntityEqual(a: currency.CurrencyEntity, b: currency.CurrencyEntity): boolean; static getCurrencyEntityPrimaryKey(a: currency.CurrencyEntity): string; query(complexSqlAlike: string): CurrencyActions; static fn(options: RemoteRequestOption): CurrencyActions; static fnExec(fn: ExecApi): CurrencyActions; uniqueId(id: string): CurrencyActions; deep(deep?: boolean): CurrencyActions; withPreloads(withPreloads: string): CurrencyActions; sort(sortFields: string | string[]): CurrencyActions; startIndex(offset: number): CurrencyActions; itemsPerPage(limit: number): CurrencyActions; get paramsAsString(): string; getCurrencys(): Promise>; getCurrencyByUniqueId(uniqueId: string): Promise>; postCurrency(entity: currency.CurrencyEntity): Promise>; patchCurrency(entity: currency.CurrencyEntity): Promise>; patchCurrencys(entity: core.BulkRecordRequest): Promise>; deleteCurrency(entity: core.DeleteRequest): Promise; }