Skip to content
This repository was archived by the owner on Oct 19, 2019. It is now read-only.

Commit e40ffcd

Browse files
committed
source-scraper-flowplayer-runner: Scrapper implements IPuppeteerRunner
1 parent 1203d60 commit e40ffcd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/source-scraper-flowplayer-runner/lib/FlowplayerRunner.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import { IRunner, IRunnerArgs, Runner } from 'source-scraper-core';
2-
import { IPuppeteerRunnerArgs, IPuppeteerRunnerOptions, PuppeteerRunner } from 'source-scraper-puppeteer-runner';
2+
import {
3+
IPuppeteerRunner, IPuppeteerRunnerArgs, IPuppeteerRunnerOptions, PuppeteerRunner
4+
} from 'source-scraper-puppeteer-runner';
35

46
import { JSHandle } from 'puppeteer';
57

@@ -56,7 +58,7 @@ export interface IFlowplayerRunnerArgs extends IPuppeteerRunnerArgs, IRunnerArgs
5658
export interface IFlowplayerRunner<T> extends IRunner<T, IFlowplayerRunnerOptions, IFlowplayerRunnerArgs> { }
5759

5860
export class FlowplayerRunner<T> extends Runner<T, IFlowplayerRunnerOptions, IFlowplayerRunnerArgs>
59-
implements IFlowplayerRunner<T> {
61+
implements IFlowplayerRunner<T>, IPuppeteerRunner<T> {
6062
public defaultOptions: IFlowplayerRunnerOptions = {};
6163

6264
protected async exec(

0 commit comments

Comments
 (0)