website-scrap-engine
Version:
Configurable website scraper in typescript
7 lines • 661 B
TypeScript
import type { DownloadResource, SubmitResourceFunc } from './types.js';
import type { StaticDownloadOptions } from '../options.js';
import type { Resource } from '../resource.js';
import type { PipelineExecutor } from './pipeline-executor.js';
export declare function processCssText(cssText: string, res: DownloadResource, options: StaticDownloadOptions, pipeline: PipelineExecutor, depth: number, resources: Resource[]): Promise<string>;
export declare function processCss(res: DownloadResource, submit: SubmitResourceFunc, options: StaticDownloadOptions, pipeline: PipelineExecutor): Promise<DownloadResource | void>;
//# sourceMappingURL=process-css.d.ts.map