Skip to content

Instantly share code, notes, and snippets.

@mscolnick
Created March 15, 2021 04:00
Show Gist options
  • Save mscolnick/5aa5744cc1ea98c3db8ef45ea278c847 to your computer and use it in GitHub Desktop.
Save mscolnick/5aa5744cc1ea98c3db8ef45ea278c847 to your computer and use it in GitHub Desktop.
interface Person {
name: string;
age: number;
location: string;
}
type P1 = Person["name"]; // string
type P2 = string[][0]; // string
type P3 = string[]["length"]; // number
type P4 = [string]["length"]; // 1
type P5 = [string, string]["length"]; // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment