UNPKG

hono

Version:

Web framework built on Web Standards

9 lines (8 loc) 291 B
/** * @module * html Helper for Hono. */ import { raw } from '../../utils/html'; import type { HtmlEscapedString } from '../../utils/html'; export { raw }; export declare const html: (strings: TemplateStringsArray, ...values: unknown[]) => HtmlEscapedString | Promise<HtmlEscapedString>;