Cute lil digger on a under construction sign

New site, mind the dust! Please log any issues or suggestions

560

January 9th, 2023 × #TypeScript#JavaScript#Web Development

TypeScript Fundamentals × Satisfies and as const

Scott and Wes discuss new TypeScript techniques like 'as const' to create frozen read-only types from data and 'satisfies' to allow better inference for unknown metadata objects.

or

In this Hasty Treat, Scott and Wes talk about Satisfies and as const.

Show Notes

export const currencies = {
USD: 'US Dollars',
CAD: 'Canadian Dollar',
EUR: 'Euro',
} as const;

export type Currency = typeof currencies;
export type CurrencyCode = keyof Currency;

Tweet us your tasty treats