flagpole
Version:
Simple and fast DOM integration, headless or headful browser, and REST API testing framework.
13 lines • 354 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class FetchEvent {
constructor(request) {
this.type = "fetch";
this.request = request;
}
passThroughOnException() { }
waitUntil(somePromise) { }
respondWith(response) { }
}
exports.FetchEvent = FetchEvent;
//# sourceMappingURL=workers.js.map