Skip to content

getReducers

ts
function getReducers(): Reducer[];

Returns a list of all Reducers currently held in memory.

Example

ts
import { getReducers, reducer } from "@monstermann/signals";

const count = reducer(...);
getReducers(); // [count]