Skip to content

Instantly share code, notes, and snippets.

@asci
Created April 30, 2021 12:15
Show Gist options
  • Save asci/d43919f5dbf24e5911262eb3410f9bc5 to your computer and use it in GitHub Desktop.
Save asci/d43919f5dbf24e5911262eb3410f9bc5 to your computer and use it in GitHub Desktop.
Typescript snippets
const fruits = ["apple", "banana", "cherry", "orange"] as const
type Fruit = typeof fruits[number]
const myFruit: Fruit = "cherry"
function isFruit(some: unknown): some is Fruit {
return fruits.includes(some as any)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment