Skip to content

Commit

Permalink
chore: update typescript to v4.5.5 (#8042)
Browse files Browse the repository at this point in the history
Co-authored-by: Randolf Jung <jrandolf@chromium.org>
  • Loading branch information
jrandolf-zz and jrandolf committed Feb 21, 2022
1 parent f0a2b51 commit c5e01ef
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -113,6 +113,6 @@
"standard-version": "9.3.2",
"text-diff": "1.0.1",
"ts-node": "10.5.0",
"typescript": "4.4.4"
"typescript": "4.5.5"
}
}
20 changes: 10 additions & 10 deletions utils/doclint/check_public_api/index.js
Expand Up @@ -411,21 +411,21 @@ function compareDocumentations(actual, expected) {
'Method ElementHandle.dragEnter() data',
{
actualName: 'Object',
expectedName: 'DragData',
expectedName: 'Protocol.Input.DragData',
},
],
[
'Method ElementHandle.dragOver() data',
{
actualName: 'Object',
expectedName: 'DragData',
expectedName: 'Protocol.Input.DragData',
},
],
[
'Method ElementHandle.drop() data',
{
actualName: 'Object',
expectedName: 'DragData',
expectedName: 'Protocol.Input.DragData',
},
],
[
Expand Down Expand Up @@ -509,7 +509,7 @@ function compareDocumentations(actual, expected) {
'Method Mouse.dragEnter() data',
{
actualName: 'Object',
expectedName: 'DragData',
expectedName: 'Protocol.Input.DragData',
},
],
[
Expand All @@ -523,7 +523,7 @@ function compareDocumentations(actual, expected) {
'Method Mouse.dragOver() data',
{
actualName: 'Object',
expectedName: 'DragData',
expectedName: 'Protocol.Input.DragData',
},
],
[
Expand All @@ -537,7 +537,7 @@ function compareDocumentations(actual, expected) {
'Method Mouse.drop() data',
{
actualName: 'Object',
expectedName: 'DragData',
expectedName: 'Protocol.Input.DragData',
},
],
[
Expand Down Expand Up @@ -723,7 +723,7 @@ function compareDocumentations(actual, expected) {
'Method Page.setUserAgent() userAgentMetadata',
{
actualName: 'Object',
expectedName: 'UserAgentMetadata',
expectedName: 'Protocol.Emulation.UserAgentMetadata',
},
],
[
Expand Down Expand Up @@ -828,14 +828,14 @@ function compareDocumentations(actual, expected) {
'Method Page.setCookie() ...cookies',
{
actualName: '...Object',
expectedName: '...CookieParam',
expectedName: '...Protocol.Network.CookieParam',
},
],
[
'Method Page.emulateVisionDeficiency() type',
{
actualName: 'string',
expectedName: 'Object',
expectedName: 'Protocol.Emulation.SetEmulatedVisionDeficiencyRequest',
},
],
[
Expand Down Expand Up @@ -996,7 +996,7 @@ function compareDocumentations(actual, expected) {
'Method Page.deleteCookie() ...cookies',
{
actualName: '...Object',
expectedName: '...DeleteCookiesRequest',
expectedName: '...Protocol.Network.DeleteCookiesRequest',
},
],
[
Expand Down

0 comments on commit c5e01ef

Please sign in to comment.