Skip to content

Commit

Permalink
fixed unit test queryparams issue
Browse files Browse the repository at this point in the history
  • Loading branch information
scarrero committed Dec 2, 2022
1 parent 3c2cd01 commit 4024f31
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/oncokb-frontend-commons/src/lib/urls.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import { default as URL, QueryParams } from 'url';
import { default as URL } from 'url';

export type QueryParams = {
[key: string]: undefined | null | string | string[];
};

export type BuildUrlParams = {
pathname: string;
Expand Down

0 comments on commit 4024f31

Please sign in to comment.