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 • 558 B
text/typescript
export default FavoriteList;
/**
* Class returned by consultFavorites operations
* @extends DataSetObject
* @param {string} entity - The entity name, e.g. "Comp"
*/
declare class FavoriteList extends DataSetObject {
constructor(remoteAPI: any, entity: any);
entity: any;
asJsonRpc(): {
"#id": string;
"@name": string;
"@func": {
"@name": string;
entity: any;
}[];
};
}
import DataSetObject from "./dataset-object.mjs";
//# sourceMappingURL=favorite-list.d.mts.map