I have a custom object named "ThreadObj" that I need to use in creating a structure called THREADLISTS, which will hold multiple arrays of Threadlist. Here is what I have so far:
Threadlist: ThreadObj[] = [];
THREADLISTS: [ThreadObj[]][ThreadObj] = []; // How do I properly type and initialize this?
The first dimension consists of ThreadObj[] and the second dimension is of ThreadObj.
Thanks!