12345678910111213141516171819202122232425 |
- import { type CheerioAPI } from './load.js';
- import { type CheerioOptions } from './options.js';
- import type { AnyNode } from 'domhandler';
- export { contains, merge } from './static.js';
- export type * from './types.js';
- export type { Cheerio } from './cheerio.js';
- export type { CheerioOptions, HTMLParser2Options } from './options.js';
- export type { CheerioAPI } from './load.js';
- export declare const load: (content: string | AnyNode | AnyNode[] | Buffer, options?: CheerioOptions | null, isDocument?: boolean) => CheerioAPI;
|