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