/** * 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: keyboardActions */ import * as keyboardActions from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class KeyboardShortcutActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isKeyboardShortcutEntityEqual(a: keyboardActions.KeyboardShortcutEntity, b: keyboardActions.KeyboardShortcutEntity): boolean; static getKeyboardShortcutEntityPrimaryKey(a: keyboardActions.KeyboardShortcutEntity): string; query(complexSqlAlike: string): KeyboardShortcutActions; static fn(options: RemoteRequestOption): KeyboardShortcutActions; static fnExec(fn: ExecApi): KeyboardShortcutActions; uniqueId(id: string): KeyboardShortcutActions; deep(deep?: boolean): KeyboardShortcutActions; withPreloads(withPreloads: string): KeyboardShortcutActions; sort(sortFields: string | string[]): KeyboardShortcutActions; startIndex(offset: number): KeyboardShortcutActions; itemsPerPage(limit: number): KeyboardShortcutActions; get paramsAsString(): string; getKeyboardShortcuts(): Promise>; getKeyboardShortcutByUniqueId(uniqueId: string): Promise>; postKeyboardShortcut(entity: keyboardActions.KeyboardShortcutEntity): Promise>; patchKeyboardShortcut(entity: keyboardActions.KeyboardShortcutEntity): Promise>; patchKeyboardShortcuts(entity: core.BulkRecordRequest): Promise>; deleteKeyboardShortcut(entity: core.DeleteRequest): Promise; }