diff --git a/base.d.ts b/base.d.ts index cf3b592..0803e2a 100644 --- a/base.d.ts +++ b/base.d.ts @@ -171,7 +171,8 @@ export type ParseOptions = { readonly parseFragmentIdentifier?: boolean; }; -export type ParsedQuery = Record>; +// eslint-disable-next-line @typescript-eslint/ban-types +export type ParsedQuery = Record>; /** Parse a query string into an object. Leading `?` or `#` are ignored, so you can pass `location.search` or `location.hash` directly.