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

x/cav/parser.ts>ParserOutput

A server framework for Deno
Go to Latest
type alias ParserOutput
import { type ParserOutput } from "https://deno.land/x/cav@0.2.3/parser.ts";

Extracts the output type of a given Parser.

definition: (T extends { _output: infer O; } ? O : T extends Parser<any, infer O> ? O : never)