Files
klz-cables.com/.pnpm-store/v10/files/1c/4e2ee39948037cf2ea45b5f20f8ae4cd3bb4ae26b9feaa04bc34fa534549ec2118d0918804f9e3d51a2afcb353a2ef7e42b4ecb77c7793c9f213737407d975
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

11 lines
545 B
Plaintext

import { JSONSchema, SchemaType } from './types/JSONSchema';
/**
* Duck types a JSONSchema schema or property to determine which kind of AST node to parse it into.
*
* Due to what some might say is an oversight in the JSON-Schema spec, a given schema may
* implicitly be an *intersection* of multiple JSON-Schema directives (ie. multiple TypeScript
* types). The spec leaves it up to implementations to decide what to do with this
* loosely-defined behavior.
*/
export declare function typesOfSchema(schema: JSONSchema): Set<SchemaType>;