@robotlegsjs/core
Version:
An architecture-based IoC framework for JavaScript/TypeScript
17 lines (16 loc) • 344 B
TypeScript
import { IEventDispatcher } from "../../../events/api/IEventDispatcher";
/**
* @private
*/
export declare class LifecycleEventRelay {
private static _TYPES;
private _relay;
/**
* @private
*/
constructor(source: IEventDispatcher, destination: IEventDispatcher);
/**
* @private
*/
destroy(): void;
}