Skip to main content
Module

x/hex/formatters/formatter.ts>default

An ecosystem delivering practices, philosophy and portability.
Go to Latest
interface default
import { type default } from "https://deno.land/x/hex@v0.4.9/formatters/formatter.ts";

Type Parameters

optional
TSource = unknown
optional
TTarget = string

Properties

names: readonly string[]
serialize: (payload: TSource | Promise<TSource>) => Promise<TTarget>
optional
deserialize: (payload: TTarget | Promise<TTarget>) => Promise<TSource>