From 4f2569e78f5e4787ef7db1f49060d3ee04ff1451 Mon Sep 17 00:00:00 2001 From: gobeumsu Date: Sun, 28 Dec 2025 14:35:27 +0900 Subject: [PATCH] fix: remove duplicate Range interface (DRY violation) Range interface was defined in both api/types.ts and frontmatter/types.ts. Only frontmatter/types.ts actually uses it, so removed the unused duplicate. --- src/api/types.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/api/types.ts b/src/api/types.ts index 30b6f32..1ef2f37 100644 --- a/src/api/types.ts +++ b/src/api/types.ts @@ -1,8 +1,3 @@ -export interface Range { - min: number; - max: number; -} - export interface Model { id: string; name: string;