Files
invyone/frontend/types/unified-components.ts
T
DDD1542 4a8413000b
Build & Deploy to K8s / build-and-deploy (push) Failing after 11m17s
Consolidate canonical input migration
Remove legacy v2 input/select and file/media runtimes, add canonical option/file loaders, and document Codex handoff.
2026-05-12 18:36:43 +09:00

8 lines
260 B
TypeScript

// Legacy compatibility shim — UnifiedSelect 가 사용하는 최소 타입만 유지.
// 옛 V2 입력/선택 본체 (Phase D.3 폐기) 와 분리됨.
export interface SelectOption {
value: string;
label: string;
}
export type UnifiedSelectProps = any;