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.
/** * @class IBaseModelOptions * @module StructureJS * @submodule interface * @interface */ interface IBaseModelOptions { /** * @property expand * @type {boolean} */ expand?:boolean; } export default IBaseModelOptions;