* Execute scraper configuration instantly * Update changelog --------- Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com>
9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
export interface ScraperConfiguration {
|
|
defaultMarketPrice?: number;
|
|
headers?: { [key: string]: string };
|
|
locale?: string;
|
|
mode?: 'instant' | 'lazy';
|
|
selector: string;
|
|
url: string;
|
|
}
|