Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/ahh/src/result/mod.ts>Result

Mostly rusty stuff for @denoland.
Go to Latest
type alias Result
import { type Result } from "https://deno.land/x/ahh@v0.6.1/src/result/mod.ts";

Represents a value that is either successful (Ok) or erroneous (Err).

definition: Err<E> | Ok<T>