UNPKG

efficy-enterprise-api

Version:

The Efficy Enterprise API is developed for server-side usage in a Node.js environment (e.g. for integrations) and also bundled for usage inside an Efficy browser session for client-side JSON RPC requests.

17 lines 541 B
export default AttachmentList; declare class AttachmentList extends RemoteObject { /** * Request attachment from FILES table * @param {number} k_file * @param {number} [version=0] * @returns {Attachment} */ getAttachment(k_file: number, version?: number): Attachment; resetState(): void; get funcs(): any; setResponseObject(value: any): void; #private; } import RemoteObject from "../remote-object.mjs"; import Attachment from "./type.mjs"; //# sourceMappingURL=list.d.mts.map