Skip to content

Instantly share code, notes, and snippets.

@joanna-liana
Created December 10, 2022 09:33
Show Gist options
  • Save joanna-liana/de27bfde8cee1a448b2845c3651ba21f to your computer and use it in GitHub Desktop.
Save joanna-liana/de27bfde8cee1a448b2845c3651ba21f to your computer and use it in GitHub Desktop.
`ReadonlyRecord` type - to prevent hacks for mutating record properties, e.g. pushing to arrays or overriding nested props
type ReadonlyRecord<Record> = {
readonly [Key in keyof Record]: ReadonlyRecord<Record[Key]>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment