create.d.ts 144 Bytes
import { Store } from './types';
export interface Listener {
    (): void;
}
export declare function create<S = {}>(initialState: S): Store<S>;