UNPKG

@raulpesilva/re-state

Version:

easy way to create a shared state to the entire application

3 lines (2 loc) 119 B
export declare type DispatchReState<A> = (value: A) => void; export declare type Selector<T, S = T> = (store: T) => S;