Skip to content

Instantly share code, notes, and snippets.

@RayLuxembourg
Created September 22, 2019 14:50
Show Gist options
  • Select an option

  • Save RayLuxembourg/8d81501ab31e4897ef91d1497ee16f10 to your computer and use it in GitHub Desktop.

Select an option

Save RayLuxembourg/8d81501ab31e4897ef91d1497ee16f10 to your computer and use it in GitHub Desktop.
Typescript
type QueryParam = "size" | "color" | "page"
export const parseQueryParam = <T extends QueryParam>(queryParam: T) : T => {
return queryParam
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment