UNPKG

website-scrap-engine

Version:
6 lines 299 B
import type { load } from 'cheerio'; export type CheerioStatic = ReturnType<typeof load>; export type Cheerio = ReturnType<CheerioStatic>; export type CheerioOptionsInterface = NonNullable<Parameters<typeof load>[1]>; export type CheerioElement = Cheerio[number]; //# sourceMappingURL=types.d.ts.map