mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
11 lines
328 B
TypeScript
11 lines
328 B
TypeScript
import { Handler, HandlerObject } from '../_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: Handler) => HandlerObject;
|