Skip to main content
Module

x/cav/mod.ts>ParserInput

A server framework for Deno
Go to Latest
type alias ParserInput
Re-export
import { type ParserInput } from "https://deno.land/x/cav@0.0.21/mod.ts";

Extracts the input type of a given Parser.

definition: (T extends { _input: infer I; } ? I : T extends Parser<infer I> ? I : never)