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

NullableSchemable

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

Takes a Schemable and returns a Schemable<A | null>;

interface NullableSchemable <U extends Kind> extends Hold<U> {
readonly nullable: <A, B, C, D, E>(or: $<U, [A, B, C], [D], [E]>) => $<U, [A | null, B, C], [D], [E]>;
}

§Type Parameters

§
U extends Kind
[src]

§Extends

§Properties

§
readonly nullable: <A, B, C, D, E>(or: $<U, [A, B, C], [D], [E]>) => $<U, [A | null, B, C], [D], [E]>
[src]