(clientId: string)
| 22 | } |
| 23 | |
| 24 | initialize(clientId: string): void { |
| 25 | this.clientId = clientId; |
| 26 | |
| 27 | this.clientAtom = atom((get) => { |
| 28 | if (this.clientId == null) { |
| 29 | return null; |
| 30 | } |
| 31 | return WOS.getObjectValue(WOS.makeORef("client", this.clientId), get); |
| 32 | }); |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | export { ClientModel }; |
no outgoing calls
no test coverage detected