Variable DashboardGadgetSchemaConst
DashboardGadgetSchema: ZodObject<
{
color: ZodCustom<
| string & {}
| "blue"
| "red"
| "yellow"
| "green"
| "cyan"
| "purple"
| "gray"
| "white",
| string & {}
| "blue"
| "red"
| "yellow"
| "green"
| "cyan"
| "purple"
| "gray"
| "white",
>;
id: ZodNumber;
moduleKey: ZodOptional<ZodString>;
position: ZodOptional<
ZodObject<
{
"The column position of the gadget.": ZodNumber;
"The row position of the gadget.": ZodNumber;
},
$loose,
>,
>;
title: ZodString;
uri: ZodOptional<ZodString>;
},
$loose,
> = ...
Details of a gadget.