Sha256: 491aa36231b0994e0815dbf4b0856ebaf44dd28b96d5f6509c513008110dbd34
Contents?: true
Size: 442 Bytes
Versions: 50
Compression:
Stored size: 442 Bytes
Contents
export interface DomSerializerOptions { xmlMode?: boolean | 'foreign'; decodeEntities?: boolean; } /** * Renders a DOM node or an array of DOM nodes to a string. * * Can be thought of as the equivalent of the `outerHTML` of the passed node(s). * * @param nodes Nodes to be rendered. * @param options Changes serialization behavior */ export default function render( nodes: {} | {}[], options?: DomSerializerOptions ): string;
Version data entries
50 entries across 49 versions & 9 rubygems