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

Schema

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

A Schema is the a function that takes a generic schemable and builds a specific model from it.

type Schema<A, B = unknown, C = unknown, D = unknown, E = unknown> = <U extends Kind>(S: Schemable<U>) => $<U, [A, B, C], [D], [E]>;

§Type Parameters

§
B = unknown
[src]
§
C = unknown
[src]
§
D = unknown
[src]
§
E = unknown
[src]

§Type

§
<U extends Kind>(S: Schemable<U>) => $<U, [A, B, C], [D], [E]>
[src]