UNPKG

@elrondnetwork/erdjs-data-api-client

Version:
19 lines 535 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DataApiBaseQuery = void 0; class DataApiBaseQuery { constructor(type, query, variables, responsePath) { this.type = type; this.query = query; this.variables = variables; this.responsePath = responsePath; } toJson() { return { query: this.query, variables: this.variables, }; } } exports.DataApiBaseQuery = DataApiBaseQuery; //# sourceMappingURL=base.query.js.map