I have a variable called threads:
threads: Subject<{[key: string]: Thread }> = new BehaviorSubject({});
Now, I want to combine the threads variable with my newly created threadTest variable:
threadTest : Subject<Array<Thread>> = new Subject();
Can I achieve this by doing something like:
this.threadTest = this.threads;
Appreciate any assistance on this matter...