UNPKG

tubular-common

Version:

Tubular Common Models and Data Transformer

13 lines 318 B
class ShallowHttpClient { request; handler; constructor(url, handler) { this.request = url; this.handler = handler; } fetch(gridRequest) { return this.handler(this.request, gridRequest); } } export default ShallowHttpClient; //# sourceMappingURL=ShallowHttpClient.js.map