Skip to content

Commit

Permalink
Clean: QueryDataMap record as Partial
Browse files Browse the repository at this point in the history
Suggested per #54650
  • Loading branch information
binury committed Sep 5, 2021
1 parent e1ab6c1 commit ee7d02a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/urijs/index.d.ts
Expand Up @@ -118,7 +118,7 @@ declare namespace URI {
preventInvalidHostname: boolean;
}

type QueryDataMap = Record<string, any>;
type QueryDataMap = Partial<Record<string, any>>;
}

interface URI {
Expand Down

0 comments on commit ee7d02a

Please sign in to comment.