Variable DashboardConfigSchemaConst
DashboardConfigSchema: ZodObject<
{
format: ZodDefault<
ZodEnum<
{
json: "json";
text: "text";
markdown: "markdown";
compact: "compact";
},
>,
>;
maxAgentsShown: ZodDefault<ZodNumber>;
maxEventsShown: ZodDefault<ZodNumber>;
showGraph: ZodDefault<ZodBoolean>;
showBottlenecks: ZodDefault<ZodBoolean>;
showClusters: ZodDefault<ZodBoolean>;
showContributions: ZodDefault<ZodBoolean>;
timeWindowMs: ZodDefault<ZodNumber>;
},
$strip,
> = ...
Zod schema for dashboard configuration.