What does `TemplateStringsArray` represent in TypeScript tagged template literals? TypeScript ProfessionalHard Try Now
Which of the following correctly converts a union type to an intersection type? TypeScript ProfessionalHard Try Now
What does the `satisfies` operator introduced in TypeScript 4.9 do? TypeScript ProfessionalHard Try Now
What does `type NonNullable = T extends null | undefined ? never : T` accomplish? TypeScript ProfessionalHard Try Now
What does the `-?` modifier do in a mapped type like `{ [K in keyof T]-?: T[K] }`? TypeScript ProfessionalHard Try Now
What does `type ReturnType = T extends (…args: any[]) => infer R ? R : never` do? TypeScript ProfessionalHard Try Now
Which of the following correctly describes a distributive conditional type? TypeScript ProfessionalHard Try Now
What is the output of `type Flatten = T extends Array ? U : T` when applied as `Flatten`? TypeScript ProfessionalHard Try Now