()
| 145 | } |
| 146 | |
| 147 | get current(): TResult { |
| 148 | if (this.queryClientResolutionState === 'missing') { |
| 149 | throw createMissingQueryClientError() |
| 150 | } |
| 151 | |
| 152 | return this.result |
| 153 | } |
| 154 | |
| 155 | protected get connectedState(): boolean { |
| 156 | return this.connected |
nothing calls this directly
no test coverage detected