Files
klz-cables.com/.pnpm-store/v10/files/5e/e84f4d27b5edea763043c112c3c67ff785108a1427befc3439f741e9d548f2bbf4c15d0909352644b6f5e358f76de92c6a59cf8bc8696742f416ed08bd84bf
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

20 lines
636 B
Plaintext

import { MergeCoreCollection } from "../types/schema.cjs";
//#region src/schema/extension.d.ts
type DirectusExtension<Schema = any> = {
name: string;
bundle: string | null;
schema: ExtensionSchema | null;
meta: MergeCoreCollection<Schema, 'directus_extensions', {
enabled: boolean;
}>;
};
type ExtensionSchema = {
type: ExtensionTypes;
local: boolean;
version?: string;
};
type ExtensionTypes = 'interface' | 'display' | 'layout' | 'module' | 'panel' | 'hook' | 'endpoint' | 'operation' | 'bundle';
//#endregion
export { DirectusExtension, ExtensionSchema, ExtensionTypes };
//# sourceMappingURL=extension.d.cts.map