This utility allows us to expand nested types in auto complete prompts.
type OtherType = { property1: string; property2: number;}type SomeType = { property2: Expand<OtherType>;} Copy
type OtherType = { property1: string; property2: number;}type SomeType = { property2: Expand<OtherType>;}
This utility allows us to expand nested types in auto complete prompts.