@robotlegsjs/core
Version:
An architecture-based IoC framework for JavaScript/TypeScript
15 lines (14 loc) • 406 B
TypeScript
import { IBundle } from "../../framework/api/IBundle";
import { IContext } from "../../framework/api/IContext";
/**
* For that Classic Robotlegs flavour
*
* <p>This bundle installs a number of extensions commonly used
* in typical Robotlegs applications and modules.</p>
*/
export declare class MVCSBundle implements IBundle {
/**
* @inheritDoc
*/
extend(context: IContext): void;
}