(datum: object)
| 60 | } |
| 61 | |
| 62 | activate(datum: object) { |
| 63 | return new Promise<void>((resolve, reject) => { |
| 64 | this.dataScope.activate(datum); |
| 65 | this.props.onDataChanged(DataLayoutChange.same); |
| 66 | resolve(); |
| 67 | }); |
| 68 | } |
| 69 | |
| 70 | deactivate() { |
| 71 | return new Promise<void>((resolve, reject) => { |
nothing calls this directly
no test coverage detected