UNPKG

hono

Version:

Web framework built on Web Standards

8 lines (7 loc) 292 B
/** * @module * This module provides the `hono/jsx/dom` dev runtime. */ import type { JSXNode, Props } from '../base'; export declare const jsxDEV: (tag: string | Function, props: Props, key?: string) => JSXNode; export declare const Fragment: (props: Record<string, unknown>) => JSXNode;