Sha256: b1d73703252c8570fdf2952475805f5808ba3511fefbd93a3e7bd8406de7dcd0
Contents?: true
Size: 384 Bytes
Versions: 162
Compression:
Stored size: 384 Bytes
Contents
import { VNode } from 'preact'; interface Options { shallow?: boolean; xml?: boolean; pretty?: boolean | string; } export function render(vnode: VNode, context?: any, options?: Options): string; export function renderToString( vnode: VNode, context?: any, options?: Options ): string; export function shallowRender(vnode: VNode, context?: any): string; export default render;
Version data entries
162 entries across 81 versions & 1 rubygems