Skip to main content
Module

x/localekit/mod.ts>FuncType

A translation plugin for Deno
Go to Latest
type alias FuncType
Re-export
import { type FuncType } from "https://deno.land/x/localekit@2.0.0/mod.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