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

x/hex/src/lib/functions/mod.ts>default

An ecosystem delivering practices, philosophy and portability. Powered By Deno and JavaScript.
Latest
interface default
import { type default } from "https://deno.land/x/hex@0.6.5/src/lib/functions/mod.ts";

Type Parameters

optional
T = Record<string | number | symbol, any>

Properties

optional
platform: { type: string; name: string; }
optional
event: Record<string, unknown> & { name: string; }
optional
requestedFormat: { mimetype: string; format: string; }
params: T
optional
vars: Record<string, unknown>
type alias default
import { type default } from "https://deno.land/x/hex@0.6.5/src/lib/functions/mod.ts";

Type Parameters

optional
T = HexFunctionPayloadTypes
definition:

Type Parameters

optional
T = Record<string | number | symbol, any>
definition: (newContext?: HexFunctionContext) => HexFunctionResult
variable default
import { default } from "https://deno.land/x/hex@0.6.5/src/lib/functions/mod.ts";

type

(iterator: HexFunctionResult, dumpFunction?: (x: unknown) => void) => unknown

type

<T>(..._routes: readonly HexFunction<T>[]) => HexFunction<T>

type

(iterator: HexFunctionResult) => unknown

type

<T>(...functions: readonly HexFunction<T>[]) => HexFunction<T>

type

{ ok; text; reactView; error; }