Files
klz-cables.com/.pnpm-store/v10/files/ad/50340568a549c18128d68282ed5532acb368869c1368c8e1ccfe516aae1d5926cb0c87da8fa240050342aefe05e06a03aed5c3cff8fccbbf22ac419fbc5c68
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

12 lines
351 B
Plaintext

import { MergeCoreCollection } from "../types/schema.cjs";
//#region src/schema/translation.d.ts
type DirectusTranslation<Schema = any> = MergeCoreCollection<Schema, 'directus_translations', {
id: string;
language: string;
key: string;
value: string;
}>;
//#endregion
export { DirectusTranslation };
//# sourceMappingURL=translation.d.cts.map