/** * 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: drive */ import * as drive from "./index"; import { RemoteRequestOption, IResponse, ExecApi, IResponseList } from "../../core/http-tools"; export declare class DriveActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isFileEntityEqual(a: drive.FileEntity, b: drive.FileEntity): boolean; static getFileEntityPrimaryKey(a: drive.FileEntity): string; query(complexSqlAlike: string): DriveActions; static fn(options: RemoteRequestOption): DriveActions; static fnExec(fn: ExecApi): DriveActions; uniqueId(id: string): DriveActions; deep(deep?: boolean): DriveActions; withPreloads(withPreloads: string): DriveActions; sort(sortFields: string | string[]): DriveActions; startIndex(offset: number): DriveActions; itemsPerPage(limit: number): DriveActions; get paramsAsString(): string; getDrive(): Promise>; getDriveByUniqueId(uniqueId: string): Promise>; }