website-scrap-engine
Version:
Configurable website scraper in typescript
11 lines • 758 B
TypeScript
import type { DownloadResource, SubmitResourceFunc } from './types.js';
import type { StaticDownloadOptions } from '../options.js';
import type { PipelineExecutor } from './pipeline-executor.js';
export declare const SOURCE_MAP_HEADER: string;
export declare const X_SOURCE_MAP_HEADER: string;
export declare const sourceMapPrefix: string[];
export declare const uriCharBitSet: number[];
export declare const isUriChar: (char: number) => boolean;
export declare const unsupportedEncoding: Set<NonNullable<BufferEncoding>>;
export declare function processSourceMap(res: DownloadResource, submit: SubmitResourceFunc, options: StaticDownloadOptions, pipeline: PipelineExecutor): Promise<DownloadResource | void>;
//# sourceMappingURL=process-source-map.d.ts.map