refactor: remove dead code and unoptimized structures
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user