(search: Search)
| 17 | constructor(private dataScope: DataScope, private props: Props) { } |
| 18 | |
| 19 | select(search: Search) { |
| 20 | return new Promise<void>((resolve, reject) => { |
| 21 | this.dataScope.select(search); |
| 22 | this.props.onDataChanged(DataLayoutChange.same); |
| 23 | resolve(); |
| 24 | }); |
| 25 | } |
| 26 | |
| 27 | deselect() { |
| 28 | return new Promise<void>((resolve, reject) => { |
nothing calls this directly
no test coverage detected