DefinitelyTyped/ski/ski.d.ts
2015-09-01 22:54:26 +09:00

11 lines
385 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/borisyankov/DefinitelyTyped
declare module "ski" {
export function S<T, S, U>(x: (z: U) => (y: S) => T, y: (z: U) => S, z: U): T;
export function K<T, S>(x: T): (y?: S) => T
export function I<T>(x: T): T;
}