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

x/cav/examples/chat/deps_dom.ts>ParserInput

A server framework for Deno
Go to Latest
type alias ParserInput
import { type ParserInput } from "https://deno.land/x/cav@0.2.0-alpha.7/examples/chat/deps_dom.ts";

Extracts the input type of a given Parser.

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