/** * A no-arg function, returning T. */ export declare type Fn0 = () => T; /** * A single arg function from A to B. */ export declare type Fn = (a: A) => B; /** * A 2-arg function from A,B to C. */ export declare type Fn2 = (a: A, b: B) => C; /** * A 3-arg function from A,B,C to D. */ export declare type Fn3 = (a: A, b: B, c: C) => D; /** * A 4-arg function from A,B,C,D to E. */ export declare type Fn4 = (a: A, b: B, c: C, d: D) => E; /** * A 5-arg function from A,B,C,D,E to F. */ export declare type Fn5 = (a: A, b: B, c: C, d: D, e: E) => F; /** * A 6-arg function from A,B,C,D,E,F to G. */ export declare type Fn6 = (a: A, b: B, c: C, d: D, e: E, f: F) => G; /** * A 7-arg function from A,B,C,D,E,F,G to H. */ export declare type Fn7 = (a: A, b: B, c: C, d: D, e: E, f: F, g: G) => H; /** * A 8-arg function from A,B,C,D,E,F,G,H to I. */ export declare type Fn8 = (a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H) => I; /** * A 9-arg function from A,B,C,D,E,F,G,H,I to J. */ export declare type Fn9 = (a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I) => J; /** * A 10-arg function from A,B,C,D,E,F,G,H,I,J to K. */ export declare type Fn10 = (a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J) => K; export declare type FnO = (a: A, ...xs: any[]) => B; export declare type FnO2 = (a: A, b: B, ...xs: any[]) => C; export declare type FnO3 = (a: A, b: B, c: C, ...xs: any[]) => D; export declare type FnO4 = (a: A, b: B, c: C, d: D, ...xs: any[]) => E; export declare type FnO5 = (a: A, b: B, c: C, d: D, e: E, ...xs: any[]) => F; export declare type FnO6 = (a: A, b: B, c: C, d: D, e: E, f: F, ...xs: any[]) => G; export declare type FnO7 = (a: A, b: B, c: C, d: D, e: E, f: F, g: G, ...xs: any[]) => H; export declare type FnO8 = (a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, ...xs: any[]) => I; export declare type FnO9 = (a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, ...xs: any[]) => J; export declare type FnO10 = (a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, ...xs: any[]) => K; /** * An untyped vararg arg function to type T. */ export declare type FnAny = (...xs: any[]) => T; /** * A typed vararg arg function from A to B. */ export declare type FnAnyT = (...xs: A[]) => B; /** * 1-arg function with arg of type A and return type B (defaults * to A) */ export declare type FnU = Fn; /** * 2-arg function with all args uniformly of type A and return type B (defaults * to A) */ export declare type FnU2 = Fn2; /** * 3-arg function with all args uniformly of type A and return type B (defaults * to A) */ export declare type FnU3 = Fn3; /** * 4-arg function with all args uniformly of type A and return type B (defaults * to A) */ export declare type FnU4 = Fn4; /** * 5-arg function with all args uniformly of type A and return type B (defaults * to A) */ export declare type FnU5 = Fn5; /** * 6-arg function with all args uniformly of type A and return type B (defaults * to A) */ export declare type FnU6 = Fn6; /** * 7-arg function with all args uniformly of type A and return type B (defaults * to A) */ export declare type FnU7 = Fn7; /** * 8-arg function with all args uniformly of type A and return type B (defaults * to A) */ export declare type FnU8 = Fn8; /** * 9-arg function with all args uniformly of type A and return type B (defaults * to A) */ export declare type FnU9 = Fn9; /** * 10-arg function with all args uniformly of type A and return type B (defaults * to A) */ export declare type FnU10 = Fn10; export declare type FnN = FnU; export declare type FnN2 = FnU2; export declare type FnN3 = FnU3; export declare type FnN4 = FnU4; export declare type FnN5 = FnU5; export declare type FnN6 = FnU6; export declare type FnN7 = FnU7; export declare type FnN8 = FnU8; export declare type FnN9 = FnU9; export declare type FnN10 = FnU10; //# sourceMappingURL=fn.d.ts.map