(modelName: string)
| 631 | } |
| 632 | |
| 633 | public clearModelParams(modelName: string): void { |
| 634 | localStorage.removeItem(`${MODEL_PARAMS_PREFIX}${modelName}`); |
| 635 | } |
| 636 | |
| 637 | public hasModelParams(modelName: string): boolean { |
| 638 | return Object.keys(this.getModelParams(modelName)).length > 0; |
no outgoing calls
no test coverage detected