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.
13 lines • 377 B
text/typescript
export default StringObject;
/**
* Class uses by operations that return a string result
* @extends RemoteObject
* @property {string} result
*/
declare class StringObject extends RemoteObject {
result: any;
/** @protected */
protected operationName: any;
}
import RemoteObject from "../remote-object.mjs";
//# sourceMappingURL=string-object.d.mts.map