feat: 초기 프로젝트 설정 및 룰.md 파일 추가

This commit is contained in:
2025-07-28 09:53:31 +09:00
commit 09a4d38512
8165 changed files with 1021855 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { MetricInterface } from '../features/metrics';
export declare class V8MetricsConfig {
new_space: boolean;
old_space: boolean;
map_space: boolean;
code_space: boolean;
large_object_space: boolean;
heap_total_size: boolean;
heap_used_size: boolean;
heap_used_percent: boolean;
}
export default class V8Metric implements MetricInterface {
private timer;
private TIME_INTERVAL;
private metricService;
private logger;
private metricStore;
private unitKB;
private metricsDefinitions;
init(config?: V8MetricsConfig | boolean): any;
destroy(): void;
private formatMiBytes;
}