hexo/node_modules/workbox-routing/utils/normalizeHandler.d.ts

11 lines
367 B
TypeScript
Raw Permalink Normal View History

2023-10-03 11:14:36 +08:00
import { RouteHandler, RouteHandlerObject } from 'workbox-core/types.js';
import '../_version.js';
/**
* @param {function()|Object} handler Either a function, or an object with a
* 'handle' method.
* @return {Object} An object with a handle method.
*
* @private
*/
export declare const normalizeHandler: (handler: RouteHandler) => RouteHandlerObject;