individual provider runs

This commit is contained in:
mrjvs
2023-09-06 21:24:39 +02:00
parent 493032590e
commit 7b9b25acab
5 changed files with 72 additions and 13 deletions

View File

@@ -46,3 +46,8 @@ export type FullScraperEvents = {
// start scraping an item.
start?: (id: string) => void;
};
export type IndividualScraperEvents = {
// update progress percentage and status of the currently scraping item
update?: (evt: UpdateEvent) => void;
};