StructureJS
0.15.3A class based utility library for building modular and scalable web platform applications. Features opt-in classes and utilities which provide a solid foundation and toolset to build your next project.
import IEventDispatcher from './IEventDispatcher' ; /** * TODO: YUIDoc_comment * * @class IDataStore * @extends IEventDispatcher * @module StructureJS * @submodule interface * @interface */ interface IDataStore extends IEventDispatcher { /** * @property data */ data:any; /** * @property src */ src:string; /** * @property complete */ complete:boolean; /** * @method load */ load():any; } export default IDataStore;