refactor: remove dead code and unoptimized structures

This commit is contained in:
2026-05-06 12:12:37 +09:00
parent ef8fd086dd
commit 9115935eaf
7 changed files with 2 additions and 210 deletions
+1 -8
View File
@@ -1,10 +1,3 @@
/**
* IDataSource: 데이터 원천에 대한 추상화 인터페이스 (DIP 준수)
*/
export interface IDataSource<T> {
fetch(): Promise<T[]>;
}
/**
* 집계 결과 타입 정의
*/
@@ -15,7 +8,7 @@ export interface AggregateResult {
average?: number;
}
export interface AggregateOptions {
interface AggregateOptions {
collectValues?: boolean;
}