Skip to content

Instantly share code, notes, and snippets.

@bradharms
Created April 12, 2018 16:27
Show Gist options
  • Save bradharms/9faa69a78a595c3233c3b1e2fbf0886e to your computer and use it in GitHub Desktop.
Save bradharms/9faa69a78a595c3233c3b1e2fbf0886e to your computer and use it in GitHub Desktop.
ccc.ts
type Deps = {
aaa : () => number,
bbb : (a : number, b : number) => number
};
export default ({ aaa, bbb } : Deps) =>
(a : number, b : number) => {
const x = aaa();
const y = bbb(a, b);
return x + y;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment