10 lines
257 B
TypeScript
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 };
|