interface ISubscribableProxy<T> {
    addTarget(target: T): void;
    destroy(): void;
    removeTarget(target: T): void;
}

Type Parameters

Methods