Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/localekit/types/fn.ts>FuncType

A translation plugin for Deno
Latest
type alias FuncType
import { type FuncType } from "https://deno.land/x/localekit@2.2.0/types/fn.ts";

Represents a function type with optional generic parameters.

Type Parameters

optional
T = Any
  • The return type of the function.
optional
P = Any[]
  • The parameter types of the function as an array.
optional
C = Record<string, unknown>
  • The context type of the function as a record.
definition: (opts: FuncArgsType<T, P, C>) => Any