Skip to content

Instantly share code, notes, and snippets.

@jaycosaur
Created August 9, 2020 11:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaycosaur/becc7a3fb5856f0d22fb0c2fe12aca55 to your computer and use it in GitHub Desktop.
Save jaycosaur/becc7a3fb5856f0d22fb0c2fe12aca55 to your computer and use it in GitHub Desktop.
Union types [typescript] - Typescript to Python field guide
type StringOrNumber = string | number;
const somethingGood: StringOrNumber = "123"; // ok!
const somethingBad: StringOrNumber = {}; // not ok!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment