()
| 33 | } |
| 34 | |
| 35 | public toJson(): string |
| 36 | { |
| 37 | const params: Record<string, any> = {}; |
| 38 | Object.keys(this.inputParams).forEach((key) => { |
| 39 | params[_.snakeCase(key)] = this.inputParams[key as keyof IBrainFlowModelParams]; |
| 40 | }); |
| 41 | return JSON.stringify(params); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | class MLModuleDLL extends MLModuleFunctions |
no outgoing calls
no test coverage detected