| 3 | import Prompt, { type PromptOptions } from './prompt.js'; |
| 4 | |
| 5 | interface SegmentConfig { |
| 6 | type: 'year' | 'month' | 'day'; |
| 7 | len: number; |
| 8 | } |
| 9 | |
| 10 | export interface DateParts { |
| 11 | year: string; |
nothing calls this directly
no outgoing calls
no test coverage detected