Skip to main content
Module

x/localekit/mod.ts>FuncArgsType

A translation plugin for Deno
Go to Latest
type alias FuncArgsType
Re-export
import { type FuncArgsType } from "https://deno.land/x/localekit@2.0.0/mod.ts";

Represents the type for the arguments of a function.

Type Parameters

optional
T = Any
  • The type of the value.
optional
P = Any[]
  • The type of the parameters passed to the function.
optional
C = Record<string, unknown>
  • The type of the context - an object.
definition: { ctx: C; fns: FuncObj; value: T; params: P; }