(name: string)
| 8 | } |
| 9 | |
| 10 | find(name: string): IModelService | null { |
| 11 | const found = this.models.find((i) => i.name === name); |
| 12 | if (found) { |
| 13 | return found; |
| 14 | } |
| 15 | |
| 16 | return null; |
| 17 | } |
| 18 | |
| 19 | get(): IModelService[] { |
| 20 | return this.models; |
no outgoing calls
no test coverage detected