(s: Partial<FetchState<TData, TParams>> = {})
| 29 | } |
| 30 | |
| 31 | setState(s: Partial<FetchState<TData, TParams>> = {}) { |
| 32 | this.state = { |
| 33 | ...this.state, |
| 34 | ...s, |
| 35 | }; |
| 36 | this.subscribe(); |
| 37 | } |
| 38 | |
| 39 | runPluginHandler(event: keyof PluginReturn<TData, TParams>, ...rest: any[]) { |
| 40 | // @ts-ignore |
no outgoing calls
no test coverage detected