Last active
April 29, 2022 20:01
-
-
Save bennycode/fc3f23770070e44ebfb80ec9607873d3 to your computer and use it in GitHub Desktop.
Discriminated Unions in TypeScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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