Skip to content

Instantly share code, notes, and snippets.

@ukslim
ukslim / ramda-typescript.md
Last active October 12, 2020 11:37
Ramda and Typescript

Ramda and TypeScript

... when @types/ramda is installed.

Type inference for currying:

const curried = add(1);
// infers: const curried: (b: number) => number

...