()
| 34 | }; |
| 35 | |
| 36 | export const createUpdateQueue = <State>() => { |
| 37 | return { |
| 38 | shared: { |
| 39 | pending: null |
| 40 | }, |
| 41 | dispatch: null |
| 42 | } as UpdateQueue<State>; |
| 43 | }; |
| 44 | |
| 45 | export const enqueueUpdate = <State>( |
| 46 | updateQueue: UpdateQueue<State>, |
no outgoing calls
no test coverage detected