()
| 26 | constructor(readonly snapshot: Signal<ResourceSnapshot<T>>) {} |
| 27 | |
| 28 | private get state(): ResourceSnapshot<T> { |
| 29 | return this.snapshot(); |
| 30 | } |
| 31 | |
| 32 | readonly value = computed(() => { |
| 33 | if (this.state.status === 'error') { |
no test coverage detected