/** * Measure and log result. * @param fn - function to measure. * @param message - message to log * @param callback - called when the function has finished. * @returns a function */ export declare function perfFn
(fn: (...args: P) => R, message: string, callback?: (m: string, elapsedMs: number) => void): (...args: P) => R; //# sourceMappingURL=debugPerf.d.ts.map