Skip to content

Instantly share code, notes, and snippets.

@itacirgabral
Created August 7, 2023 02:39
Show Gist options
  • Save itacirgabral/765d688ee34c25d24384fd3522882e05 to your computer and use it in GitHub Desktop.
Save itacirgabral/765d688ee34c25d24384fd3522882e05 to your computer and use it in GitHub Desktop.
function youSayGoodbyeISayHello<TGreeting extends 'hello' | 'goodbye'>(greeting: TGreeting) {
const returned = greeting === "goodbye"
? "hello"
: "goodbye"
return returned as TGreeting extends 'hello' ? 'goodbye' : 'hello';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment