Variable OrgChartConfigurationSchemaConst
OrgChartConfigurationSchema: ZodObject<
{
global: ZodObject<
{
css: ZodRecord<ZodString, ZodNullable<ZodString>>;
user_directory: ZodObject<
{
card: ZodArray<ZodString, "many">;
filters: ZodArray<ZodString, "many">;
show: ZodArray<ZodString, "many">;
table: ZodArray<ZodString, "many">;
},
"strip",
ZodTypeAny,
{ card: string[]; filters: string[]; show: string[]; table: string[] },
{ card: string[]; filters: string[]; show: string[]; table: string[] },
>;
},
"strip",
ZodTypeAny,
{
css: Record<string, string | null>;
user_directory: {
card: string[];
filters: string[];
show: string[];
table: string[];
};
},
{
css: Record<string, string | null>;
user_directory: {
card: string[];
filters: string[];
show: string[];
table: string[];
};
},
>;
writer: ZodBoolean;
},
"strip",
ZodTypeAny,
{
global: {
css: Record<string, string | null>;
user_directory: {
card: string[];
filters: string[];
show: string[];
table: string[];
};
};
writer: boolean;
},
{
global: {
css: Record<string, string | null>;
user_directory: {
card: string[];
filters: string[];
show: string[];
table: string[];
};
};
writer: boolean;
},
> = ...