Fix unused exports for knip check

This commit is contained in:
bymyself
2025-09-28 16:17:09 -07:00
parent ff0c15b119
commit 1b1cb956e6
2 changed files with 4 additions and 4 deletions

View File

@@ -1,12 +1,12 @@
import { api } from '@/scripts/api'
export type FileType = 'input' | 'output' | 'temp'
type FileType = 'input' | 'output' | 'temp'
export interface FileNameMapping {
[assetId: string]: string // asset-id -> asset name
}
export interface CacheEntry {
interface CacheEntry {
data: FileNameMapping
dedupData?: FileNameMapping // Deduplicated mapping with unique display names
timestamp: number