Skip to content

Instantly share code, notes, and snippets.

@madflanderz
Last active October 25, 2019 13:11
Show Gist options
  • Save madflanderz/f71428b83f1ac2f9feb9d66502495a8b to your computer and use it in GitHub Desktop.
Save madflanderz/f71428b83f1ac2f9feb9d66502495a8b to your computer and use it in GitHub Desktop.
Extract Type from Array
const food = ['apple', 'banana', 'cookie'] as const
// 'apple', 'banana', 'cookie'
type Food = typeof food[number]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment