feat: add scrapeListAuto to custom actions

This commit is contained in:
karishmas6
2024-08-12 06:28:33 +05:30
parent 2bd4bc9ff1
commit 286a39662d

View File

@@ -28,7 +28,7 @@ type MethodNames<T> = {
[K in keyof T]: T[K] extends Function ? K : never;
}[keyof T];
export type CustomFunctions = 'scrape' | 'scrapeSchema' | 'scroll' | 'screenshot' | 'script' | 'enqueueLinks' | 'flag' | 'scrapeList';
export type CustomFunctions = 'scrape' | 'scrapeSchema' | 'scroll' | 'screenshot' | 'script' | 'enqueueLinks' | 'flag' | 'scrapeList' | 'scrapeListAuto';
export type What = {
action: MethodNames<Page> | CustomFunctions,