UNPKG

@robotlegsjs/core

Version:

An architecture-based IoC framework for JavaScript/TypeScript

12 lines (11 loc) 297 B
/** * Optional application configuration interface * * <p>Note: a config does not need to implement this interface. But, it is highly recommended.</p> */ export interface IConfig { /** * Configure will be invoked after dependencies have been supplied */ configure(): void; }