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

None

import type { None } from "https://raw.githubusercontent.com/baetheus/fun/main/option.ts";

The None type represents the non-existence of a value.

type None = {
tag: "None";
}
;

§Type

§
{
tag: "None";
}
[src]