UNPKG

nope-js-browser

Version:

NoPE Runtime for the Browser. For nodejs please use nope-js-node

24 lines (23 loc) 623 B
/** * @author Martin Karkowski * @email m.karkowski@zema.de */ import { INopeCore } from "../types"; import { NopeBaseModule } from "./BaseModule"; /** * Base Implementation of a Module. * * The Module is used to share information and data. Although it implements the * the Basic behavior to fullfill a given traget. * * @export * @class BaseModule * @implements {INopeModule} */ export declare class InjectableNopeBaseModule extends NopeBaseModule { /** * Creates an instance of BaseModule. * @memberof InjectableNopeBaseModule */ constructor(_core: INopeCore); }