Skip to content

Instantly share code, notes, and snippets.

@Farenheith
Created February 29, 2020 06:49
Show Gist options
  • Save Farenheith/8affe74fc9368afaef7e0fab5dcccdc6 to your computer and use it in GitHub Desktop.
Save Farenheith/8affe74fc9368afaef7e0fab5dcccdc6 to your computer and use it in GitHub Desktop.
export function anonymousExample(callbacker: (x: (v: number) => void) => void) {
callbacker((v) => {
if (v === 1) {
console.log('first v!');
} else {
console.log('another v!');
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment