I have this model:
export interface SizeAndColors { size: string; color: string;}[];
and then I have another model and I need the sizeAndColor but without a array.
export interface Cart { options: SizeAndColors}
How can I say at options that I want to have this interface without the array?is that possible ?