Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FPFn1

import type { FPFn1 } from "https://esm.sh/v135/date-fns@3.6.0/index.d.mts";

FP function interface with 1 arguments.

interface FPFn1 <Result, Arg> {
(): FPFn1<Result, Arg>;
(arg: Arg): Result;
}

§Type Parameters

§
Result
[src]

§Call Signatures

§
(): FPFn1<Result, Arg>
[src]

Curried version of the function. Returns itself.

§
(arg: Arg): Result
[src]

Returns the result of the function call.