Skip to content

Instantly share code, notes, and snippets.

@danvk
Created January 22, 2019 20:16
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 danvk/5e72a1ec34e166735bea28ba74dbf980 to your computer and use it in GitHub Desktop.
Save danvk/5e72a1ec34e166735bea28ba74dbf980 to your computer and use it in GitHub Desktop.
interface Order {
 what: Product;
 how: 'bitcoin' | 'usd';
}
const order: Order = {
 what: 'Macbook Air',
 how: 'bitcoin'
};
purchase(order.what); // ok
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment