()
| 93 | /** The sort direction of the currently active MatSortable. */ |
| 94 | @Input('matSortDirection') |
| 95 | get direction(): SortDirection { |
| 96 | return this._direction; |
| 97 | } |
| 98 | set direction(direction: SortDirection) { |
| 99 | if ( |
| 100 | direction && |
nothing calls this directly
no test coverage detected