feat: update for complex add to cart, fix nvidia (#108)

This commit is contained in:
fuckingrobot
2020-09-21 08:24:20 -04:00
committed by GitHub
parent 722eaf3cd6
commit 3ea146da14
4 changed files with 99 additions and 12 deletions
+6 -3
View File
@@ -1,9 +1,12 @@
import {Browser} from 'puppeteer';
export interface Link {
brand: string;
cartUrl?: string;
model: string;
series: string;
brand: string;
model: string;
url: string;
cartUrl?: string;
openCartAction?: (browser: Browser) => void;
screenshot?: string;
}