Facebook
From Crimson Cheetah, 6 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 250
  1. declare function compose<TResult, TArg, TResult1>(f2: (arg: TResult1) => TResult, f1: (arg: TArg) => TResult1): (arg: TArg) => TResult;
  2. declare function compose<TResult, TArg, TResult1, TResult2>(f3: (arg: TResult2) => TResult, f2: (arg: TResult1) => TResult2, f1: (arg: TArg) => TResult1): (arg: TArg) => TResult;
  3.