I'm trying writing an interface to figure to handle data like this:
interface SessionList {
appInfo: Object(string: string | null);
}
There could be 0 to many items under appInfo. I'm trying to find the correct syntax but not luck - currently at:
appInfo: Object(string: string | null);
Any ideas?