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