IOweb/node_modules/@iconify/tools/lib/misc/cheerio.d.mts
2026-07-03 15:07:38 -05:00

10 lines
257 B
TypeScript

import { Element } from 'domhandler';
import { Cheerio } from 'cheerio';
/**
* Shortcuts for Cheerio elements
*/
type CheerioElement = Element;
type WrappedCheerioElement = Cheerio<CheerioElement>;
export type { CheerioElement, WrappedCheerioElement };