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>ParserFunction

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

A function that parses data. If data is not shaped as expected, an error should be thrown.

Type Parameters

optional
I = any
optional
O = any

Call Signatures

(input: I): Promise<O> | O