Created
October 7, 2022 16:46
-
-
Save nathanclevenger/f53dcb6055922274c243b1b099d267b4 to your computer and use it in GitHub Desktop.
Typescript Permutations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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