Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ActionFunction

Route action function signature

interface ActionFunction {
(args: ActionFunctionArgs): Promise<Response> | Response | Promise<any> | any;
}

§Call Signatures

§
(args: ActionFunctionArgs):
| Promise<Response>
| Response
| Promise<any>
| any
[src]