Skip to content

Instantly share code, notes, and snippets.

View hariombalhara's full-sized avatar

Hariom Balhara hariombalhara

View GitHub Profile
@KATT
KATT / favourite-ts-tricks.md
Last active July 26, 2023 06:16
🧙‍♂️ Favourite non-obvious TS tricks

Record<string, x | undefined>

Represent maps

// rather than 
const map: {[ key: string ]: string} = {
  foo: 'bar',
}