* Currently selected time represented as JavaScript Date instance * @public * @default null
()
| 449 | * @default null |
| 450 | */ |
| 451 | get dateValue(): Date | null { |
| 452 | return this.getValueFormat().parse(this._effectiveValue) as Date; |
| 453 | } |
| 454 | |
| 455 | get _lastAvailableTime() { |
| 456 | const date = UI5Date.getInstance(); |
nothing calls this directly
no test coverage detected