Skip to content

Instantly share code, notes, and snippets.

@carlrip
Created December 17, 2019 18:18
Show Gist options
  • Save carlrip/eac4f7cb23b3bb148ec3960732cb9402 to your computer and use it in GitHub Desktop.
Save carlrip/eac4f7cb23b3bb148ec3960732cb9402 to your computer and use it in GitHub Desktop.
ReadonlyArray generic type
type Person = {
readonly name: string;
readonly scores: ReadonlyArray<number>; // same as readonly number[]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment