You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Listener and Publisher methods cannot act as proper mixins, as they rely on certain contextual variables– for example, publishers have a this.emitter and listeners have this.subscriptions.
Listener and Publisher methods cannot act as proper mixins, as they rely on certain contextual variables– for example, publishers have a
this.emitter
and listeners havethis.subscriptions
.Suggestions are,
createStore()
andcreateAction()
to be used as classes (i.e.new Reflux.Store()
,new Reflux.Action()
) (see Support ES6/TypeScript classes in Stores and Action types refluxjs#444).The text was updated successfully, but these errors were encountered: