I've just stumbled across the following syntax in TypeScript
export interface OrderPool {
[id: string]: Level3Order;
}
Could someone clarify what I am looking at?
Best I can understand is that this is an interface OrderPool which contains a property named Id of type string(array?) and something of type Level3Order????
What is the relationship of Level3Order to the property Id and is Id an array or single instance?