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

x/view_engine/node_modules/@types/ejs/index.d.ts>ClientFunction

🚀A Template View Engine for Deno frameworks
Latest
type alias ClientFunction
import { type ClientFunction } from "https://deno.land/x/view_engine@v10.6.0/node_modules/@types/ejs/index.d.ts";

This type of function is returned from compile, when Options.client is true.

This is also used internally to generate a TemplateFunction.

definition: (
locals?: Data,
escape?: EscapeCallback,
include?: IncludeCallback,
rethrow?: RethrowCallback,
) => string