fix(package): no implicit any

This commit is contained in:
Luke
2023-09-16 10:37:14 +02:00
parent abfacee33c
commit 61e3ba9904
4 changed files with 8 additions and 10 deletions

View File

@@ -3,7 +3,7 @@ export const cache: Record<string, any> = new Proxy(
resource: GetCurrentResourceName(),
},
{
get(target, key: string) {
get(target: any, key: string) {
const result = key ? target[key] : target;
if (result !== undefined) return result;