Skip to content

Instantly share code, notes, and snippets.

/**
* Based on
* https://github.com/donnut/typescript-ramda
* with the help of the typescript-converter from
* [email protected]:ptmt/flow-declarations.git
*/
declare module 'ramda' {
declare type placeholder = {}
declare type ListIterator<T, TResult> = {
(value: T, index: number, list: T[]): TResult;