TypeScript Fundamentals Satisfies and as const

Published: Jan. 9, 2023, 8:16 p.m.

b'

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

'