Skip to content

Commit

Permalink
Specify use of UrlWithStringQuery over Url obj
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeembrey committed May 25, 2018
1 parent e5be500 commit ec07164
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/request.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parse, Url } from 'url'
import { parse, UrlWithStringQuery } from 'url'
import { Servie, ServieOptions } from './base'

/**
Expand Down Expand Up @@ -51,7 +51,7 @@ export class Request extends Servie implements RequestOptions {
/**
* @internal
*/
protected [kUrlObject]?: Url
protected [kUrlObject]?: UrlWithStringQuery

/**
* @internal
Expand Down

0 comments on commit ec07164

Please sign in to comment.