DefinitelyTyped/types/ski/index.d.ts
2017-03-24 14:27:52 -07:00

10 lines
386 B
TypeScript

// Type definitions for ski 1.1.0
// Project: https://github.com/jden/ski
// Definitions by: Aya Morisawa <https://github.com/AyaMorisawa>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export declare function S<T, S, U>(x: (z: U) => (y: S) => T, y: (z: U) => S, z: U): T;
export declare function K<T, S>(x: T): (y?: S) => T
export declare function I<T>(x: T): T;