Skip to content

Instantly share code, notes, and snippets.

@ThomasKruegl
Last active March 16, 2018 09:43
Show Gist options
  • Save ThomasKruegl/b78a2d509faa434911d1c8640dd54b9c to your computer and use it in GitHub Desktop.
Save ThomasKruegl/b78a2d509faa434911d1c8640dd54b9c to your computer and use it in GitHub Desktop.
function someMethod(f: () => void) {
f();
}
const myCallback = () => console.log("doing stuff…");
someMethod(myCallback);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment