##Type definitions for Ramda

Test with:
tsc --module amd ramda-tests.tsPull requests are welcome!
##Usage
Install the typings for node using:
typings install ramda --saveIf you use the package through a script tag, use:
typings install ramda --global --saveTo use the Ramda type definitions include the following line in each of the .ts files that use Ramda:
/// <reference path="./path/to/ramda.d.ts" />
or
import * as R from './path/to/ramda'##Note on placeholders
Due to incompatiblity problems with typescript's typing system, Ramda's placeholder typing is removed. For binary functions the same functionaly
can be achieved using R.flip. For example:
// using a placeholder ...
R.subtract(*placeholder*, 3);
// ... is the same as
R.flip(R.subtract)(3);##Status Typing compatible with ramda version 0.21.0. This needs to be done:
- include
sequenceandtraverse - include
pipeK,pipeP,composeK,composeP