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
18 lines
635 B
Plaintext
18 lines
635 B
Plaintext
import { DirectusUser } from "./user.cjs";
|
|
import { DirectusCollection } from "./collection.cjs";
|
|
import { MergeCoreCollection } from "../types/schema.cjs";
|
|
|
|
//#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.cts.map |