()
| 105 | /** The currently selected date. */ |
| 106 | @Input() |
| 107 | get selected(): DateRange<D> | D | null { |
| 108 | return this._selected; |
| 109 | } |
| 110 | set selected(value: DateRange<D> | D | null) { |
| 111 | if (value instanceof DateRange) { |
| 112 | this._selected = value; |
nothing calls this directly
no test coverage detected