mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
389 B
TypeScript
11 lines
389 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
|
|
|
|
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;
|
|
}
|