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

Type Parameters

Methods