()
| 187 | } |
| 188 | |
| 189 | public release(): void |
| 190 | { |
| 191 | const res = MLModuleDLL.getInstance().release(this.inputJson); |
| 192 | if (res !== BrainFlowExitCodes.STATUS_OK) |
| 193 | { |
| 194 | throw new BrainFlowError (res, 'Could not release model'); |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | public static releaseAll(): void |
| 199 | { |
no test coverage detected