container.d.ts 224 B

12345678
  1. declare class Container<O> {
  2. private $value;
  3. constructor(x: any);
  4. static of<O>(x: any): Container<O>;
  5. call<T, U>(f: (x: T, ...rest: any[]) => U, ...rest: any[]): this;
  6. value(): O;
  7. }
  8. export { Container };