Skip to main content
Module

x/enzastdlib/decorators/function.ts>FunctionBox

enzastdlib is a set of TypeScript modules that follow a common design API philosophy aiming at sane defaults and ease-of-use targeting the Deno TypeScript runtime.
Latest
type alias FunctionBox
import { type FunctionBox } from "https://deno.land/x/enzastdlib@v0.0.4/decorators/function.ts";

Returns a typed that by default has any[] parameters and void return.

Type Parameters

optional
ParametersType extends any[] = any[]
optional
ReturnType extends unknown = void
definition: (...args: ParametersType) => ReturnType