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.

20 lines 457 B
export default AttachmentObject; /** * Class representing a remotely fetched Attachment */ declare class AttachmentObject { constructor(key: any); key: any; setStream(stream: any): void; /** * get the base64 encoded attachment stream * @type {string} */ get base64Stream(): string; get func(): { "@name": string; key: any; }; #private; } //# sourceMappingURL=type.d.mts.map