TypeScript: template literal types reference
2 December 2022 (Updated 2 December 2022)
In a nutshell
TypeScript’s template literal types let you create string literal types using a syntax that’s similar to JavaScript’s template literal strings. You can use it for simple to advanced use cases.
Recipes
Use single literal type
Combine multiple literal types
Do some advanced type juggling
In the PropEventSource<Type>
type, we use a template literal type and IndexedAccess to create a ${Key}Changed
event name like `on.(firstNameChange')
which will also receive the correct argument in the callback of type string
.
Sources
Tagged:
TypeScript
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment