mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2025-06-27 14:51:32 +00:00
Fix type
This commit is contained in:
@ -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) => {
|
return Object.getOwnPropertyNames(objType).reduce((acc, prop) => {
|
||||||
let accessProp = prop;
|
let accessProp = prop;
|
||||||
|
Reference in New Issue
Block a user