The end
TypeScript
Type used for text?
TypeScript
string
TypeScript
What type represents text and numbers?
TypeScript
string | number
TypeScript
What is a literal type in TypeScript?
TypeScript
A type that allows only one exact value, like 'yes' or 42
TypeScript
What is the type for unknown values?
TypeScript
unknown
TypeScript
How to define an object with keys?
TypeScript
{ key: type }