| |
| |
| |
| |
| import { type CheerioAPI, getLoad } from './load.js'; |
| import { type CheerioOptions } from './options.js'; |
| import { getParse } from './parse.js'; |
| import type { AnyNode } from 'domhandler'; |
| import render from 'dom-serializer'; |
| import { parseDocument } from 'htmlparser2'; |
|
|
| 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 const load: ( |
| content: string | AnyNode | AnyNode[] | Buffer, |
| options?: CheerioOptions | null, |
| isDocument?: boolean, |
| ) => CheerioAPI = getLoad(getParse(parseDocument), render); |
|
|