builderman verion 0.1.0, initial commit/release.
This commit is contained in:
19
node_modules/cheerio/lib/esm/parse.d.ts
generated
vendored
Normal file
19
node_modules/cheerio/lib/esm/parse.d.ts
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
/// <reference types="node" />
|
||||
import { AnyNode, Document, ParentNode } from 'domhandler';
|
||||
import type { InternalOptions } from './options.js';
|
||||
/**
|
||||
* Get the parse function with options.
|
||||
*
|
||||
* @param parser - The parser function.
|
||||
* @returns The parse function with options.
|
||||
*/
|
||||
export declare function getParse(parser: (content: string, options: InternalOptions, isDocument: boolean, context: ParentNode | null) => Document): (content: string | Document | AnyNode | AnyNode[] | Buffer, options: InternalOptions, isDocument: boolean, context: ParentNode | null) => 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: AnyNode[] | AnyNode, parent: ParentNode | null): ParentNode | null;
|
||||
//# sourceMappingURL=parse.d.ts.map
|
||||
Reference in New Issue
Block a user