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
23 lines
768 B
Plaintext
23 lines
768 B
Plaintext
import { DirectusUser } from "./user.cjs";
|
|
import { DirectusRole } from "./role.cjs";
|
|
import { MergeCoreCollection } from "../types/schema.cjs";
|
|
|
|
//#region src/schema/preset.d.ts
|
|
type DirectusPreset<Schema = any> = MergeCoreCollection<Schema, 'directus_presets', {
|
|
id: number;
|
|
bookmark: string | null;
|
|
user: DirectusUser<Schema> | string | null;
|
|
role: DirectusRole<Schema> | string | null;
|
|
collection: string | null;
|
|
search: string | null;
|
|
layout: string | null;
|
|
layout_query: Record<string, any> | null;
|
|
layout_options: Record<string, any> | null;
|
|
refresh_interval: number | null;
|
|
filter: Record<string, any> | null;
|
|
icon: string | null;
|
|
color: string | null;
|
|
}>;
|
|
//#endregion
|
|
export { DirectusPreset };
|
|
//# sourceMappingURL=preset.d.cts.map |