()
| 15 | } |
| 16 | |
| 17 | static getInstance(): ClientModel { |
| 18 | if (!ClientModel.instance) { |
| 19 | ClientModel.instance = new ClientModel(); |
| 20 | } |
| 21 | return ClientModel.instance; |
| 22 | } |
| 23 | |
| 24 | initialize(clientId: string): void { |
| 25 | this.clientId = clientId; |
no outgoing calls
no test coverage detected