Skip to content

Instantly share code, notes, and snippets.

@dnaumenko
Created January 22, 2021 14:18
Show Gist options
  • Save dnaumenko/240248739fbbe43e66570e3169712ed8 to your computer and use it in GitHub Desktop.
Save dnaumenko/240248739fbbe43e66570e3169712ed8 to your computer and use it in GitHub Desktop.
tp_sc_3
interface A { kind: "A", propA: string }
interface B { kind: "B", propB: string }
function foo(param: A | B): string {
switch (param.kind) {
case "A":
return 'foo'
case "B":
return 'bar'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment