()
| 86 | /** The currently selected date. */ |
| 87 | @Input() |
| 88 | get selected(): DateRange<D> | D | null { |
| 89 | return this._selected; |
| 90 | } |
| 91 | set selected(value: DateRange<D> | D | null) { |
| 92 | if (value instanceof DateRange) { |
| 93 | this._selected = value; |
nothing calls this directly
no test coverage detected