export type PerformanceMeasurer = (measurementName: string, fn: () => TResult) => TResult & { duration: number; }; export type PerformanceMeasurerAsync = (measurementName: string, fn: () => Promise) => Promise; //# sourceMappingURL=Performance.d.ts.map