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 603 B
export default PropertyObject; /** * Class returned by API property operation such as currentdatabasealias, currentuserfullname * @extends StringObject * @param {string} name - The name of the API property */ declare class PropertyObject extends StringObject { constructor(remoteAPI: any, name: any); name: any; /** @protected */ protected asJsonRpc(): { "#id": string; "@name": string; "@func": { "@name": any; }[]; }; } import StringObject from "./string-object.mjs"; //# sourceMappingURL=property-object.d.mts.map