File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,6 @@ export class ScrapeConfig {
70
70
webhook ?: string = null ;
71
71
timeout ?: number = null ; // in milliseconds
72
72
js_scenario ?: Rec < any > = null ;
73
- extract ?: Rec < any > = null ;
74
73
lang ?: string [ ] = null ;
75
74
os ?: string = null ;
76
75
auto_scroll ?: boolean = null ;
@@ -108,7 +107,6 @@ export class ScrapeConfig {
108
107
webhook ?: string ;
109
108
timeout ?: number ; // in milliseconds
110
109
js_scenario ?: Rec < any > ;
111
- extract ?: Rec < any > ;
112
110
os ?: string ;
113
111
lang ?: string [ ] ;
114
112
auto_scroll ?: boolean ;
@@ -157,7 +155,6 @@ export class ScrapeConfig {
157
155
this . webhook = options . webhook ?? this . webhook ;
158
156
this . timeout = options . timeout ?? this . timeout ;
159
157
this . js_scenario = options . js_scenario ?? this . js_scenario ;
160
- this . extract = options . extract ?? this . extract ;
161
158
this . os = options . os ?? this . os ;
162
159
this . lang = options . lang ?? this . lang ;
163
160
this . auto_scroll = options . auto_scroll ?? this . auto_scroll ;
@@ -331,7 +328,6 @@ export class ScrapeConfig {
331
328
params . os = this . os ;
332
329
}
333
330
334
- // XXX: mising this.extract(?)
335
331
return params ;
336
332
}
337
333
}
You can’t perform that action at this time.
0 commit comments