Files
klz-cables.com/.pnpm-store/v10/files/3c/fff1f0a0c5594b3c60a740820ebb6c34a29236dc4a4b43af5ec9f56ad3ab5ded04db4179c5bda12948fb0183f5d92a45b33d767ccaf03c91e6258458978c8a
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

29 lines
1.0 KiB
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.T_UNKNOWN_ADDITIONAL_PROPERTIES = exports.T_UNKNOWN = exports.T_ANY_ADDITIONAL_PROPERTIES = exports.T_ANY = exports.hasStandaloneName = exports.hasComment = void 0;
function hasComment(ast) {
return (('comment' in ast && ast.comment != null && ast.comment !== '') ||
// Compare to true because ast.deprecated might be undefined
('deprecated' in ast && ast.deprecated === true));
}
exports.hasComment = hasComment;
function hasStandaloneName(ast) {
return 'standaloneName' in ast && ast.standaloneName != null && ast.standaloneName !== '';
}
exports.hasStandaloneName = hasStandaloneName;
//////////////////////////////////////////// literals
exports.T_ANY = {
type: 'ANY',
};
exports.T_ANY_ADDITIONAL_PROPERTIES = {
keyName: '[k: string]',
type: 'ANY',
};
exports.T_UNKNOWN = {
type: 'UNKNOWN',
};
exports.T_UNKNOWN_ADDITIONAL_PROPERTIES = {
keyName: '[k: string]',
type: 'UNKNOWN',
};
//# sourceMappingURL=AST.js.map