123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import { RouteHandler } from 'workbox-core/types.js';
- import { Route } from './Route.js';
- import './_version.js';
- export interface NavigationRouteMatchOptions {
- allowlist?: RegExp[];
- denylist?: RegExp[];
- }
- declare class NavigationRoute extends Route {
- private readonly _allowlist;
- private readonly _denylist;
-
- constructor(handler: RouteHandler, { allowlist, denylist }?: NavigationRouteMatchOptions);
-
- private _match;
- }
- export { NavigationRoute };
|