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

18 lines
631 B
Plaintext

import { DirectusUser } from "./user.js";
import { DirectusCollection } from "./collection.js";
import { MergeCoreCollection } from "../types/schema.js";
//#region src/schema/comment.d.ts
type DirectusComment<Schema> = MergeCoreCollection<Schema, 'directus_comments', {
id: string;
collection: DirectusCollection<Schema> | string;
item: string;
comment: string;
date_created: 'datetime' | null;
date_updated: 'datetime' | null;
user_created: DirectusUser<Schema> | string | null;
user_updated: DirectusUser<Schema> | string | null;
}>;
//#endregion
export { DirectusComment };
//# sourceMappingURL=comment.d.ts.map