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

ActionResult

import type { ActionResult } from "https://raw.githubusercontent.com/wavebeem/bread-n-butter/v0.6.0/src/bread-n-butter.ts";

Represents the result of a parser's action callback.

type ActionResult<A> = ActionOK<A> | ActionFail;

§Type Parameters

§Type