export type WalkStatus = "stop" | "visit-children"; /** * Recursively visit all the node in a json object. * Visitor should return a @see {WalkStatus} to determine if the object should be visited further. * @param obj Object to visit * @param visitor Vistor function. */ export declare function walk(obj: unknown, visitor: (value: unknown, path: string[]) => WalkStatus): false | undefined; //# sourceMappingURL=traverse.d.ts.map