Skip to content

Instantly share code, notes, and snippets.

@ragmha
Created November 26, 2018 09:11
Show Gist options
  • Save ragmha/a99b22aeabe1461289866d65a8a8bc07 to your computer and use it in GitHub Desktop.
Save ragmha/a99b22aeabe1461289866d65a8a8bc07 to your computer and use it in GitHub Desktop.
type Size = "small" | "medium" | "large";
type Callback = (size: Size) => void;
let pizzaSize: Size = "small";
const selectSize: Callback = x => (pizzaSize = x);
selectSize("medium");
console.log(`Pizza size: ${pizzaSize}`);
selectSize("small");
console.log(`Pizza size: ${pizzaSize}`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment