@robotlegsjs/core
Version:
An architecture-based IoC framework for JavaScript/TypeScript
13 lines (12 loc) • 392 B
TypeScript
import { IContext } from "../../framework/api/IContext";
import { IExtension } from "../../framework/api/IExtension";
/**
* An Event Map keeps track of listeners and provides the ability
* to unregister all listeners with a single method call.
*/
export declare class LocalEventMapExtension implements IExtension {
/**
* @inheritDoc
*/
extend(context: IContext): void;
}