diff --git a/pkg/nodejs/@datasworn/core/dist/ObjectGlobPath/ObjectGlobber.d.ts b/pkg/nodejs/@datasworn/core/dist/ObjectGlobPath/ObjectGlobber.d.ts index 0757d1e38..0207204a0 100644 --- a/pkg/nodejs/@datasworn/core/dist/ObjectGlobPath/ObjectGlobber.d.ts +++ b/pkg/nodejs/@datasworn/core/dist/ObjectGlobPath/ObjectGlobber.d.ts @@ -35,7 +35,7 @@ declare class ObjectGlobber = Array = [] if (object instanceof Map) - results.push(...this.#getMapPaths(object, includeArrays, currentPath)) + results.push( + ...ObjectGlobber.#getMapPaths(object, includeArrays, currentPath) + ) else results.push( - ...this.#getPlainObjectPaths(object, includeArrays, currentPath) + ...ObjectGlobber.#getPlainObjectPaths( + object, + includeArrays, + currentPath + ) ) return results @@ -366,7 +372,7 @@ class ObjectGlobber< results.push( nextPath, - ...this.getObjectPaths(nextObject, includeArrays, nextPath) + ...ObjectGlobber.getObjectPaths(nextObject, includeArrays, nextPath) ) } @@ -389,7 +395,7 @@ class ObjectGlobber< results.push( nextPath, - ...this.getObjectPaths(nextObject, includeArrays, nextPath) + ...ObjectGlobber.getObjectPaths(nextObject, includeArrays, nextPath) ) }