UNPKG

@sentzunhat/zacatl

Version:

A modular, high-performance TypeScript microservice framework for Node.js, featuring layered architecture, dependency injection, and robust validation for building scalable APIs and distributed systems.

7 lines 284 B
export interface MeasureExecutionTimeOptions { name: string; fn: () => Promise<void>; silent?: boolean; } export declare const measureExecutionTime: ({ name, fn, silent, }: MeasureExecutionTimeOptions) => Promise<void>; //# sourceMappingURL=measure-execution-time.d.ts.map