fix warnings for any type

This commit is contained in:
Blake Joynes
2023-04-15 12:16:57 -04:00
parent 5d38a76997
commit 933ebf25a3
6 changed files with 59 additions and 18 deletions

View File

@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
export function parseOptions(options?: { [s: string]: any }): string {
return options ? new URLSearchParams(Object.entries(options)).toString() : '';
}