Skip to content

Instantly share code, notes, and snippets.

@akorchev
Last active September 2, 2016 06:56
Show Gist options
  • Save akorchev/c954e899c75e3ca75d17e000cd5fa43b to your computer and use it in GitHub Desktop.
Save akorchev/c954e899c75e3ca75d17e000cd5fa43b to your computer and use it in GitHub Desktop.
interface Car {
}
interface Bus {
}
type Vehicle = Car | Bus;
function drive(vehicle: Vehicle): void {
switch (vehicle) {
case Car:
break;
case Buss:
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment