Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
442 B
TypeScript
Executable File
18 lines
442 B
TypeScript
Executable File
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;
|