UNPKG

@fluentui/state

Version:

A set of utils to create framework agnostic and reusable state managers

3 lines (2 loc) 201 B
import { AnyActions, Manager, ManagerConfig } from './types'; export declare const createManager: <State, Actions extends AnyActions>(config: ManagerConfig<State, Actions>) => Manager<State, Actions>;