UNPKG

144 BTypeScriptView Raw
1import { Store } from './types';
2export interface Listener {
3 (): void;
4}
5export declare function create<S = {}>(initialState: S): Store<S>;