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
* git@github.com:ptmt/flow-declarations.git
*/
declare module 'ramda' {
declare type placeholder = {}
declare type ListIterator<T, TResult> = {
(value: T, index: number, list: T[]): TResult;