Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Created April 12, 2019 17:47
Show Gist options
  • Save ajcrites/8c599ecd9cfdfce29eee60991123214d to your computer and use it in GitHub Desktop.
Save ajcrites/8c599ecd9cfdfce29eee60991123214d to your computer and use it in GitHub Desktop.
type F<S> = <R>(fn: (s: S) => R) => R;
const foob: F<number> = cb => cb(1);
const bar = foob<string>(num => num.toString());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment