blob: fa7348d28e0c96f122f3ab961f738d3d60a5f668 (
plain)
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
|
import {expectNotAssignable, expectNotType, expectType} from 'tsd';
import type {ElementHandle, JSHandle} from 'puppeteer';
declare const handle: JSHandle;
{
expectType<unknown>(await handle.evaluate('document'));
expectType<number>(
await handle.evaluate(() => {
return 1;
})
);
expectType<HTMLElement>(
await handle.evaluate(() => {
return document.body;
})
);
expectType<string>(
await handle.evaluate(() => {
return '';
})
);
expectType<string>(
await handle.evaluate((value, str) => {
expectNotAssignable<never>(value);
expectType<string>(str);
return '';
}, '')
);
}
{
expectType<JSHandle>(await handle.evaluateHandle('document'));
expectType<JSHandle<number>>(
await handle.evaluateHandle(() => {
return 1;
})
);
expectType<JSHandle<string>>(
await handle.evaluateHandle(() => {
return '';
})
);
expectType<JSHandle<string>>(
await handle.evaluateHandle((value, str) => {
expectNotAssignable<never>(value);
expectType<string>(str);
return '';
}, '')
);
expectType<ElementHandle<HTMLElement>>(
await handle.evaluateHandle(() => {
return document.body;
})
);
}
declare const handle2: JSHandle<{test: number}>;
{
{
expectType<JSHandle<number>>(await handle2.getProperty('test'));
expectNotType<JSHandle<unknown>>(await handle2.getProperty('test'));
}
{
expectType<JSHandle<unknown>>(
await handle2.getProperty('key-doesnt-exist')
);
expectNotType<JSHandle<string>>(
await handle2.getProperty('key-doesnt-exist')
);
expectNotType<JSHandle<number>>(
await handle2.getProperty('key-doesnt-exist')
);
}
}
{
void handle.evaluate((value, other) => {
expectType<unknown>(value);
expectType<{test: number}>(other);
}, handle2);
}
|