UNPKG

concern

Version:

A library for seperating your application logic into concerns.

23 lines (16 loc) 361 B
/** * StateProvider is an interface for providing the 'state' a Reference should be in. * @interface */ class StateProvider { /** * provide the state * @param {string} state * @param {string} path - Path to the Concern * @param {Concern} concern * @param {Context} context */ provide() { } } export default StateProvider