mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
fix(package): no implicit any
This commit is contained in:
2
package/shared/resource/cache/index.ts
vendored
2
package/shared/resource/cache/index.ts
vendored
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user