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.
31 lines • 754 B
text/typescript
export default DataSet;
/**
* Class representing a remotely fetched DataSet
*/
declare class DataSet {
constructor(type: any, name: any, filter: any, includeBlobContent: any);
name: any;
type: any;
tableView: any;
filter: string;
includeBlobContent: boolean;
/**
* The to array converted dataset
* @type {array}
*/
get items(): any[];
/**
* When exists, the first item of the items array, else null
* @type {array}
*/
get item(): any[];
setItems(value: any): void;
get func(): {
"@name": any;
filter: string;
tableview: any;
includeblobcontent: boolean;
};
#private;
}
//# sourceMappingURL=type.d.mts.map