@biorate/axios
Version:
Axios OOP static interface
15 lines • 473 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FakeResponse = void 0;
class FakeResponse {
constructor(data, status, statusText, headers, config, request) {
this.data = data;
this.status = status;
this.statusText = statusText;
this.headers = headers;
this.config = config;
this.request = request;
}
}
exports.FakeResponse = FakeResponse;
//# sourceMappingURL=fake-response.js.map