Files
klz-cables.com/.pnpm-store/v10/files/6b/49de758a6ecbbe6a9076a5c97e5596ba893c9e8980ed697c023f38e1716fcaec2d3d12a479696c107fcce3d7ba2d69ea560e0c967402d4ad146cf524c0ac40
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

16 lines
497 B
Plaintext

import { DirectusUser } from "./user.js";
import { MergeCoreCollection } from "../types/schema.js";
//#region src/schema/dashboard.d.ts
type DirectusDashboard<Schema = any> = MergeCoreCollection<Schema, 'directus_dashboards', {
id: string;
name: string;
icon: string;
note: string | null;
date_created: 'datetime' | null;
user_created: DirectusUser<Schema> | string | null;
color: string | null;
}>;
//#endregion
export { DirectusDashboard };
//# sourceMappingURL=dashboard.d.ts.map