* Structural type for time values to avoid nominal typing issues. * Compatible with Time, CalendarDateTime, and ZonedDateTime.
| 7 | * Compatible with Time, CalendarDateTime, and ZonedDateTime. |
| 8 | */ |
| 9 | interface TimeStructure { |
| 10 | readonly hour: number; |
| 11 | readonly minute: number; |
| 12 | readonly second: number; |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Format the v-date-picker model value to match the legacy Flatpickr formats exactly. |
nothing calls this directly
no outgoing calls
no test coverage detected