Skip to content

Instantly share code, notes, and snippets.

@lukeknxt
Created December 2, 2021 10:39
Show Gist options
  • Save lukeknxt/a42ca8a046d38248485623b180c2ae3e to your computer and use it in GitHub Desktop.
Save lukeknxt/a42ca8a046d38248485623b180c2ae3e to your computer and use it in GitHub Desktop.
Unions don't always type with enums!
enum E {
A = "A",
B = "B",
}
const yep: "A" = E.A;
const yep2: E = E.A;
const nope: E = "A"; // why though
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment