commit
This commit is contained in:
parent
be4fd23bcf
commit
0bd53741af
728 changed files with 86573 additions and 0 deletions
13
node_modules/cheerio/lib/parse.d.ts
generated
vendored
Normal file
13
node_modules/cheerio/lib/parse.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
/// <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
|
Loading…
Add table
Add a link
Reference in a new issue