0.0.1 • Published 7 years ago

sablejs_store v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

Sable Store

A Store takes an application, a name, and a list of actions.

Store API

class Store {

  constructor( /* Atom */ state,
              /* String */ storeName,
              /* Immutable-Vector */ storeActions ) {}

  

  // CHANGE EVENTS
  emitChange() {}
  addChangeListener( listener ) {}
  removeChangeListener( listener ) {}


}