Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RecordSchemable

import type { RecordSchemable } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/schemable.ts";

Takes a Schemable and returns a Schemable<ReadonlyRecord>

interface RecordSchemable <U extends Kind> extends Hold<U> {
readonly record: <A, B, C, D, E>(codomain: $<U, [A, B, C], [D], [E]>) => $<U, [Record<string, A>, B, C], [D], [E]>;
}

§Type Parameters

§
U extends Kind
[src]

§Extends

§Properties

§
readonly record: <A, B, C, D, E>(codomain: $<U, [A, B, C], [D], [E]>) => $<U, [Record<string, A>, B, C], [D], [E]>
[src]