serwist
Version:
A Swiss Army knife for service workers.
13 lines • 508 B
TypeScript
import type { RouteHandler } from "../types.js";
/**
* Defines a default handler that's called when no routes explicitly
* match the incoming request.
*
* Without a default handler, unmatched requests will go against the
* network as if there were no service worker present.
*
* @param handler A callback function that returns a promise resulting in a response.
* @deprecated
*/
export declare const setDefaultHandler: (handler: RouteHandler) => void;
//# sourceMappingURL=setDefaultHandler.d.ts.map