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.
26 lines • 910 B
text/typescript
export default QuerySQLObject;
/**
* Class returned by Query operations
* @extends DataSetObject
* @property {array} items - The to array-converted DataSet. Only available after executeBatch()
* @property {string} item - When exists, the first item of the items array, else null. Only available after executeBatch()
*/
declare class QuerySQLObject extends DataSetObject {
constructor(remoteAPI: any, sql: any, queryParams?: any[], loadBlobs?: boolean, recordCount?: number);
sql: any;
queryParams: any[];
loadBlobs: boolean;
recordCount: number;
asJsonRpc(): {
"#id": string;
"@name": string;
"@func": {
"@name": string;
sql: any;
loadBlobs: boolean;
recordCount: number;
}[];
};
}
import DataSetObject from "./dataset-object.mjs";
//# sourceMappingURL=query-sql.d.mts.map