Skip to content

Commit

Permalink
fix: missing export of addNetworkInterceptor, addInterceptor
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Jan 14, 2022
1 parent 180ded4 commit 2b503c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/https.android.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { File, HttpResponseEncoding, ImageSource, Utils } from '@nativescript/core';
import * as Https from './https.common';

export { addNetworkInterceptor, addInterceptor } from './https.common';

interface Ipeer {
enabled: boolean;
allowInvalidCertificates: boolean;
Expand Down
1 change: 1 addition & 0 deletions src/https.ios.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { File, ImageSource, Utils } from '@nativescript/core';
import * as Https from './https.common';
export { addNetworkInterceptor, addInterceptor } from './https.common';

let cache: NSURLCache;

Expand Down

0 comments on commit 2b503c4

Please sign in to comment.