Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+17
@@ -0,0 +1,17 @@
|
||||
import type { Page } from './browser/BrowserPage';
|
||||
type PuppeteerCatchOptions = {
|
||||
page: Page;
|
||||
pageFunction: Function;
|
||||
frame: number | null;
|
||||
args: unknown[];
|
||||
timeoutInMilliseconds: number;
|
||||
};
|
||||
export declare function puppeteerEvaluateWithCatchAndTimeout<ReturnType>({ args, frame, page, pageFunction, timeoutInMilliseconds }: PuppeteerCatchOptions): Promise<{
|
||||
value: ReturnType;
|
||||
size: number;
|
||||
}>;
|
||||
export declare function puppeteerEvaluateWithCatch<ReturnType>({ page, pageFunction, frame, args }: PuppeteerCatchOptions): Promise<{
|
||||
value: ReturnType;
|
||||
size: number;
|
||||
}>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user