This commit is contained in:
Akim Mamedov 2024-03-04 19:49:30 +07:00
parent f7940618a1
commit dbd4d9c1fc

View File

@ -77,7 +77,7 @@ export function recursiveRenameLaquaProps(obj: unknown): unknown {
});
}
const objType: {} = obj;
const objType: Record<never, unknown> = obj;
return Object.getOwnPropertyNames(objType).reduce((acc, prop) => {
let accessProp = prop;