Skip to content

Commit 264ce7c

Browse files
author
Bruce A. Grobler
committed
Cleanup commented code, and null check objects on failure, add error logging.
1 parent a88bbc8 commit 264ce7c

File tree

7 files changed

+377
-72
lines changed

7 files changed

+377
-72
lines changed

https.android.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import * as Https from './https.common';
2+
export declare function enableSSLPinning(options: Https.HttpsSSLPinningOptions): void;
3+
export declare function disableSSLPinning(): void;
4+
export declare function request(opts: Https.HttpsRequestOptions): Promise<Https.HttpsResponse>;
5+
export * from './https.common';

https.android.js

Lines changed: 183 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

https.ios.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import * as Https from './https.common';
2+
export declare function enableSSLPinning(options: Https.HttpsSSLPinningOptions): void;
3+
export declare function disableSSLPinning(): void;
4+
export declare function request(opts: Https.HttpsRequestOptions): Promise<Https.HttpsResponse>;
5+
export * from './https.common';

https.ios.js

Lines changed: 142 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)