type alias Optionimport { type Option } from "https://deno.land/x/ahh@v0.8.1/src/option/mod.ts"; Represents an optional value that either exists (Some) or does not exist (None). Type ParametersTdefinition: None | Some<T>