Skip to content

Instantly share code, notes, and snippets.

@bennycode
Last active April 29, 2022 20:01
Show Gist options
  • Save bennycode/fc3f23770070e44ebfb80ec9607873d3 to your computer and use it in GitHub Desktop.
Save bennycode/fc3f23770070e44ebfb80ec9607873d3 to your computer and use it in GitHub Desktop.
Discriminated Unions in TypeScript
interface Dog {
age: number;
name: string;
bark: () => void;
type: "dog";
}
interface Person {
age: number;
name: string;
shout: () => void;
type: "person";
}
function makeNoise(dogOrPerson: Dog | Person): void {
switch (dogOrPerson.type) {
case "dog": {
dogOrPerson.bark();
break;
}
case "person": {
dogOrPerson.shout();
break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment