Files
klz-cables.com/.pnpm-store/v10/files/d0/cac25205eadd60e20f51d67279a995d31d0f97b10d9bce5152d013ed1296bfdbd611f7c72c2c50e21204d5eb5b0982b9e038fb7fff5f5d4642f6637b638794
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

25 lines
754 B
Plaintext

import { DirectusUser } from "./user.cjs";
import { DirectusDashboard } from "./dashboard.cjs";
import { MergeCoreCollection } from "../types/schema.cjs";
//#region src/schema/panel.d.ts
type DirectusPanel<Schema = any> = MergeCoreCollection<Schema, 'directus_panels', {
id: string;
dashboard: DirectusDashboard<Schema> | string;
name: string | null;
icon: string | null;
color: string | null;
show_header: boolean;
note: string | null;
type: string;
position_x: number;
position_y: number;
width: number;
height: number;
options: Record<string, any> | null;
date_created: 'datetime' | null;
user_created: DirectusUser<Schema> | string | null;
}>;
//#endregion
export { DirectusPanel };
//# sourceMappingURL=panel.d.cts.map