Files
klz-cables.com/.pnpm-store/v10/files/9d/36b0db240364ae5168c2d6a553e4020ed630003479c581b03763f6f0c216990809ba53aad3711c18d2e7cde0f614970988b8ea97c9eda34241e381a6fe4fc4
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

8 lines
363 B
Plaintext

import { JSONSchema, LinkedJSONSchema } from './types/JSONSchema';
import { JSONSchema4Type } from 'json-schema';
/**
* Traverses over the schema, giving each node a reference to its
* parent node. We need this for downstream operations.
*/
export declare function link(schema: JSONSchema4Type | JSONSchema, parent?: JSONSchema4Type | null): LinkedJSONSchema;