/**
* 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;
}