MCPcopy Create free account
hub / github.com/BetaSu/big-react / UpdateQueue

Interface UpdateQueue

packages/react-reconciler/src/updateQueue.ts:14–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12}
13
14export interface UpdateQueue<State> {
15 shared: {
16 pending: Update<State> | null;
17 };
18 dispatch: Dispatch<State> | null;
19}
20
21export const createUpdate = <State>(
22 action: Action<State>,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected