/** * A function to find all nested objects (not `$ref` references) and move them to the root of the symbol tree and replace with with * local `#/` `$refs`. * * @module objToRoot */ import FilePayload from "./file.payload"; /** * A function to find all nested objects (not `$ref` references) and move them to the root of the symbol tree and replace with with * local `#/` `$refs`. * * @param {FilePayload[]} payload The files to look at * @param {Function} callback The callback to raise when it is done. It will get 2 parameters, a standard `err` parameter and `payload` of the entire symbol tree */ export default function (payload: FilePayload[], callback: Function): void; //# sourceMappingURL=obj.to.root.d.ts.map