Skip to content

Instantly share code, notes, and snippets.

@blemoine
Created March 23, 2017 00:23
Show Gist options
  • Save blemoine/2878ae6b3a254872ec2671b60617610b to your computer and use it in GitHub Desktop.
Save blemoine/2878ae6b3a254872ec2671b60617610b to your computer and use it in GitHub Desktop.
interface User {
firstName: string;
lastName: string;
age: number;
}
type UserKey = keyof User
//is the same than
// type UserKey = "firstName" | "lastName" | "age"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment