Basically library structure

This commit is contained in:
mrjvs
2023-08-23 20:07:39 +02:00
parent fe721bee37
commit ef766936dd
12 changed files with 191 additions and 29 deletions

View File

@@ -1,6 +1,7 @@
import { Fetcher } from '@/utils/fetcher';
import { UseableFetcher } from '@/fetchers/types';
export interface ScrapeContext {
proxiedFetcher: Fetcher;
fetcher: Fetcher;
proxiedFetcher: UseableFetcher;
fetcher: UseableFetcher;
progress(val: number): void;
}