Skip to content

Instantly share code, notes, and snippets.

@Jexordexan
Created August 6, 2019 21:34
Show Gist options
  • Save Jexordexan/381ca15915c7c7b8d0c4dbbe183d90c7 to your computer and use it in GitHub Desktop.
Save Jexordexan/381ca15915c7c7b8d0c4dbbe183d90c7 to your computer and use it in GitHub Desktop.
Medium: Prop function
type PropType = String | Boolean | Number | Object | typeof Array
function prop<T = any>(type: PropType, options: any = {}): T {
return { type, ...options } as any
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment