This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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; |