13 lines
591 B
TypeScript
13 lines
591 B
TypeScript
/// <reference types="node" />
|
|
import { Node, Document, NodeWithChildren } from 'domhandler';
|
|
import type { InternalOptions } from './options';
|
|
export default function parse(content: string | Document | Node | Node[] | Buffer, options: InternalOptions, isDocument: boolean): Document;
|
|
/**
|
|
* Update the dom structure, for one changed layer.
|
|
*
|
|
* @param newChilds - The new children.
|
|
* @param parent - The new parent.
|
|
* @returns The parent node.
|
|
*/
|
|
export declare function update(newChilds: Node[] | Node, parent: NodeWithChildren | null): Node | null;
|
|
//# sourceMappingURL=parse.d.ts.map
|