crawlerzzz
Version:
8 lines (7 loc) • 341 B
TypeScript
/// <reference types="cheerio" />
/// <reference types="ramda" />
declare type PropValueSelectorType = {
[key: string]: (selector: any) => any;
} | Function | string;
declare const propArraySelector: Curry.Curry<($: CheerioSelector, contextArraySelector: any, propsConfig: PropValueSelectorType) => any[]>;
export { propArraySelector };