Skip to content

Commit

Permalink
fix(plugin-http): adapt to current @types/node
Browse files Browse the repository at this point in the history
  • Loading branch information
Flarna committed Nov 18, 2019
1 parent d80cf56 commit ab1ff75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const assertSpan = (
hostname: string;
pathname: string;
reqHeaders?: http.OutgoingHttpHeaders;
path?: string;
path?: string | null;
forceStatus?: Status;
component: string;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const assertSpan = (
hostname: string;
pathname: string;
reqHeaders?: http.OutgoingHttpHeaders;
path?: string;
path?: string | null;
component: string;
}
) => {
Expand Down

0 comments on commit ab1ff75

Please sign in to comment.