Skip to content

Commit

Permalink
fix(typescript): ts module interop issues with default export
Browse files Browse the repository at this point in the history
fixes #291
  • Loading branch information
panva committed Sep 14, 2020
1 parent 1789f6f commit 6ca57d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import * as http2 from 'http2';

import { Options as GotOptions, CancelableRequest, Response } from 'got';
import { URL } from 'url';
import jose from 'jose';
import crypto from 'crypto';
import * as jose from 'jose';
import * as crypto from 'crypto';

export type HttpOptions = GotOptions;
export type RetryFunction = (retry: number, error: Error) => number;
Expand Down

0 comments on commit 6ca57d0

Please sign in to comment.