-
Notifications
You must be signed in to change notification settings - Fork 7
/
prerendercloud.d.ts
146 lines (123 loc) · 3.46 KB
/
prerendercloud.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
export = prerendercloud;
declare function prerendercloud(...args: any[]): void;
declare namespace prerendercloud {
class Options {
constructor(...args: any[]);
isThrottled(...args: any[]): void;
recordFail(...args: any[]): void;
reset(...args: any[]): void;
set(...args: any[]): void;
static validOptions: string[];
}
const botsOnlyList: string[];
const cache: any;
function pdf(url: string, options?: PdfOptions): Promise<Buffer>;
function prerender(url: string, params?: any): Promise<Buffer>;
function resetOptions(): any;
function scrape(url: string, options?: ScrapeOptions): Promise<ScrapeResult>;
function screenshot(
url: string,
options?: ScreenshotOptions
): Promise<Buffer>;
function set(optionKey: string, optionValue: any): any;
function userAgentIsBot(
headers: { [key: string]: string },
requestedPath?: string
): boolean;
namespace util {
function basenameIsHtml(basename: string): boolean;
function isFunction(functionToCheck: any): boolean;
function urlPathIsHtml(urlPath: string): boolean;
}
interface PdfOptions {
noPageBreaks?: boolean;
pageRanges?: string;
scale?: number;
preferCssPageSize?: boolean;
printBackground?: boolean;
landscape?: boolean;
marginTop?: number;
marginRight?: number;
marginBottom?: number;
marginLeft?: number;
paperWidth?: number;
paperHeight?: number;
emulatedMedia?:
| "screen"
| "print"
| "braille"
| "embossed"
| "handheld"
| "projection"
| "speech"
| "tty"
| "tv";
waitExtraLong?: boolean;
dontWaitForWebSockets?: boolean;
blockCookies?: boolean;
}
interface ScreenshotOptions {
deviceWidth?: number; // Default: 1366
deviceHeight?: number; // Default: 768
deviceIsMobile?: boolean; // Default: false
viewportQuerySelector?: string;
viewportQuerySelectorPadding?: number;
viewportWidth?: number; // Defaults to deviceWidth
viewportHeight?: number; // Defaults to deviceHeight
viewportX?: number; // Default: 0
viewportY?: number; // Default: 0
viewportScale?: number; // Default: 1, min: 0.1, max: 3.0
format?: "png" | "webp" | "jpeg"; // Default: png
emulatedMedia?:
| "screen"
| "print"
| "braille"
| "embossed"
| "handheld"
| "projection"
| "speech"
| "tty"
| "tv"; // Default: screen
waitExtraLong?: boolean;
dontWaitForWebSockets?: boolean;
blockCookies?: boolean;
}
interface ScrapeOptions {
withMetadata?: boolean;
withScreenshot?: boolean;
followRedirects?: boolean; // Default: false
deviceIsMobile?: boolean; // Default: false
deviceWidth?: number; // Default: 1366, min: 10, max: 10000
deviceHeight?: number; // Default: 768, min: 10, max: 10000
emulatedMedia?:
| "screen"
| "print"
| "braille"
| "embossed"
| "handheld"
| "projection"
| "speech"
| "tty"
| "tv"; // Default: screen
waitExtraLong?: boolean;
dontWaitForWebSockets?: boolean;
blockCookies?: boolean;
}
interface ScrapeResult {
body: string;
meta: {
title: string;
h1: string;
description: string;
ogImage: string;
ogTitle: string;
ogDescription: string;
ogType: string;
twitterCard: string;
};
links: string[];
screenshot: Buffer;
statusCode: number;
headers: { [key: string]: string };
}
}