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

x/feomasto/priv/deps.ts>args.Result

Sync posts from Mastodon into FeoBlog
Go to Latest
type alias args.Result
import { type args } from "https://deno.land/x/feomasto@v0.1.0/priv/deps.ts";
const { Result } = args;

Type of result of a function that may fail

Type Parameters

Value

Type of value when the function succeeds

Error extends ParseError

Type of error when the function fails

definition: Ok<Value> | Err<Error>