Skip to content

Instantly share code, notes, and snippets.

@cenkce
Last active February 12, 2020 17:29
Show Gist options
  • Save cenkce/059094c695e610f7988a7a5ec2af904c to your computer and use it in GitHub Desktop.
Save cenkce/059094c695e610f7988a7a5ec2af904c to your computer and use it in GitHub Desktop.
const someVariable: {
prop1: "value1",
props2: "value2",
nestedType: {
nestedProps: "nested value",
...
},
...
}
type someVariable = ExtractValues<typeof someVariable>;
export default someVariable;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment