| 118 | } |
| 119 | |
| 120 | export interface DateOptions extends PromptOptions<Date, DatePrompt> { |
| 121 | format?: DateFormat; |
| 122 | locale?: string; |
| 123 | separator?: string; |
| 124 | defaultValue?: Date; |
| 125 | initialValue?: Date; |
| 126 | minDate?: Date; |
| 127 | maxDate?: Date; |
| 128 | } |
| 129 | |
| 130 | export default class DatePrompt extends Prompt<Date> { |
| 131 | #segments: SegmentConfig[]; |
nothing calls this directly
no outgoing calls
no test coverage detected