/** * Performance Module * * Performance monitoring and benchmarking constants used for * measuring application performance, detecting memory leaks, * and configuring performance tests. * * @module performance */ /** * Performance measurement constants */ export declare const PERFORMANCE_CONSTANTS: { /** * Threshold for detecting memory leaks (10% growth) */ readonly MEMORY_LEAK_THRESHOLD: 0.1; /** * Default number of benchmark runs for performance testing */ readonly DEFAULT_BENCHMARK_RUNS: 100; /** * Default number of warmup runs before benchmarking */ readonly DEFAULT_WARMUP_RUNS: 10; }; /** * Type for performance constant values */ export type PerformanceConstant = (typeof PERFORMANCE_CONSTANTS)[keyof typeof PERFORMANCE_CONSTANTS]; //# sourceMappingURL=index.d.ts.map