mirror of
https://github.com/titaniumnetwork-dev/Ultraviolet.git
synced 2025-05-16 13:00:01 -04:00
10 lines
No EOL
222 B
JavaScript
10 lines
No EOL
222 B
JavaScript
import { RequestContext } from "./context";
|
|
|
|
class ServiceWorkerProxy extends EventTarget {
|
|
constructor() {
|
|
|
|
};
|
|
static createRequest(options = {}) {
|
|
return new RequestContext(options);
|
|
};
|
|
}; |