mirror of https://github.com/jkjoy/sunpeiwen.git
11 lines
367 B
TypeScript
11 lines
367 B
TypeScript
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;
|