(featureName: string)
| 491 | } |
| 492 | |
| 493 | _findFeature<T>(featureName: string): T { |
| 494 | return this.features.find(feature => isFeature<T>(feature, featureName)) as T; |
| 495 | } |
| 496 | |
| 497 | _getSelection(): TableSelectionBase | TableSelection | undefined { |
| 498 | return this._findFeature<TableSelectionBase>("TableSelectionBase") || this._findFeature<TableSelection>("TableSelection"); |
no test coverage detected