import { DirectusUser } from "./user.js"; import { DirectusDashboard } from "./dashboard.js"; import { MergeCoreCollection } from "../types/schema.js"; //#region src/schema/panel.d.ts type DirectusPanel = MergeCoreCollection | string; name: string | null; icon: string | null; color: string | null; show_header: boolean; note: string | null; type: string; position_x: number; position_y: number; width: number; height: number; options: Record | null; date_created: "datetime" | null; user_created: DirectusUser | string | null; }>; //#endregion export { DirectusPanel }; //# sourceMappingURL=panel.d.ts.map