Skip to main content
Module

x/cav/browser.ts>ParserFunction

A server framework for Deno
Go to Latest
interface ParserFunction
import { type ParserFunction } from "https://deno.land/x/cav@0.0.24/browser.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