UNPKG

mini-store

Version:

[![Travis](https://img.shields.io/travis/yesmeck/mini-store.svg?style=flat-square)](https://travis-ci.org/yesmeck/mini-store)

6 lines (5 loc) 144 B
import { Store } from './types'; export interface Listener { (): void; } export declare function create<S = {}>(initialState: S): Store<S>;