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.

19 lines 495 B
export default RemoteObject; /** * Low level class representing an RPC operation */ declare class RemoteObject { constructor(remoteAPI: any); /** @protected */ protected requestObject: {}; /** @protected */ protected responseObject: {}; /** @protected */ protected id: string; /** @protected */ protected get api(): any; /** @protected */ protected afterExecute(): void; #private; } //# sourceMappingURL=remote-object.d.mts.map