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

UnknownSchemable

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

Wraps an unknown type in Schemable. This is the best escape hatch when a Schema isn't known ahead of time.

interface UnknownSchemable <U extends Kind> extends Hold<U> {
readonly unknown: <B, C, D, E>() => $<U, [unknown, B, C], [D], [E]>;
}

§Type Parameters

§
U extends Kind
[src]

§Extends

§Properties

§
readonly unknown: <B, C, D, E>() => $<U, [unknown, B, C], [D], [E]>
[src]