()
| 196 | } |
| 197 | |
| 198 | public static releaseAll(): void |
| 199 | { |
| 200 | const res = MLModuleDLL.getInstance().releaseAll(); |
| 201 | if (res !== BrainFlowExitCodes.STATUS_OK) |
| 202 | { |
| 203 | throw new BrainFlowError (res, 'Could not release models'); |
| 204 | } |
| 205 | } |
| 206 | } |
nothing calls this directly
no test coverage detected