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.
/** * TODO: YUIDoc_comment * * @class ICore * @module StructureJS * @submodule interface * @interface */ interface ICore { /** * @property sjsId * @readOnly */ sjsId:number; /** * @method getQualifiedClassName */ getQualifiedClassName():string; /** * @method destroy */ destroy():void } export default ICore;