12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- export type { Cheerio } from './cheerio';
- export * from './types';
- export type { CheerioOptions, HTMLParser2Options, Parse5Options, } from './options';
- export type { Node, NodeWithChildren, Element, Document } from 'domhandler';
- export * from './load';
- declare const _default: import("./load").CheerioAPI;
- export default _default;
- import * as staticMethods from './static';
- export declare const contains: typeof staticMethods.contains;
- export declare const merge: typeof staticMethods.merge;
- export declare const parseHTML: typeof staticMethods.parseHTML;
- export declare const root: typeof staticMethods.root;
|