Skip to content

Commit 084f996

Browse files
committed
run prettier on http *.ts files
1 parent ad155a2 commit 084f996

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

plugins/http/guest-js/index.ts

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -84,26 +84,26 @@ export interface ClientOptions {
8484
* Configuration of a proxy that a Client should pass requests to.
8585
*/
8686
proxy?: Proxy
87-
/**
87+
/**
8888
* Configuration for dangerous settings on the client such as disabling SSL verification.
8989
*/
90-
danger?: DangerousSettings
91-
}
92-
90+
danger?: DangerousSettings
91+
}
92+
93+
/**
94+
* Configuration for dangerous settings on the client such as disabling SSL verification.
95+
*
96+
* @since 2.3.0
97+
*/
98+
export interface DangerousSettings {
9399
/**
94-
* Configuration for dangerous settings on the client such as disabling SSL verification.
95-
*
96-
* @since 2.2.0
100+
* Disables SSL verification.
101+
*/
102+
acceptInvalidCerts?: boolean
103+
/**
104+
* Disables hostname verification.
97105
*/
98-
export interface DangerousSettings {
99-
/**
100-
* Disables SSL verification.
101-
*/
102-
acceptInvalidCerts?: boolean,
103-
/**
104-
* Disables hostname verification.
105-
*/
106-
acceptInvalidHostnames?: boolean
106+
acceptInvalidHostnames?: boolean
107107
}
108108

109109
const ERROR_REQUEST_CANCELLED = 'Request canceled'

0 commit comments

Comments
 (0)