Skip to content

Instantly share code, notes, and snippets.

@nathanclevenger
Created October 7, 2022 16:46
Show Gist options
  • Save nathanclevenger/f53dcb6055922274c243b1b099d267b4 to your computer and use it in GitHub Desktop.
Save nathanclevenger/f53dcb6055922274c243b1b099d267b4 to your computer and use it in GitHub Desktop.
Typescript Permutations
type Persona = 'Builder' | 'Coder' | 'Founder'
type Action = 'Designs' | 'Develops' | 'Launches' | 'Grows' | 'Scales'
type Vertical = 'Financial' | 'Insurance' | 'Automotive'
type Activity = 'SaaS' | 'API' | 'App'
type Sentence = `${Persona} ${Action} ${Vertical} ${Activity}`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment