Variable configSchemaConst
configSchema: ZodObject<
{
bot: ZodObject<
{
discord_message_filter: ZodUnion<
readonly [
ZodUnion<
readonly [
ZodObject<
{
max_content_length: ZodOptional<(...)>;
max_content_lines: ZodOptional<(...)>;
on_fail: ZodEnum<(...)>;
},
$strip,
>,
ZodObject<
{ ignore_pattern: ZodString; on_fail: ZodEnum<(...)> },
$strip,
>,
],
>,
ZodArray<
ZodUnion<
readonly [
ZodObject<
{
max_content_length: ...;
max_content_lines: ...;
on_fail: ...;
},
$strip,
>,
ZodObject<{ ignore_pattern: ...; on_fail: ... }, $strip>,
],
>,
>,
],
>;
panel_update_interval: ZodNumber;
reply_preview_max_length: ZodNumber;
strip_color_prefix: ZodBoolean;
},
$strip,
>;
bridge: ZodObject<{ disable_encryption: ZodBoolean }, $strip>;
config_version: ZodNumber;
debug: ZodBoolean;
language: ZodEnum<{ [key: string]: string }>;
script: ZodObject<{ entry: ZodString }, $strip>;
timezone_offset: ZodNumber;
translationOverrides: ZodRecord<
ZodEnum<{ [key: string]: string }> & $partial,
ZodString,
>;
},
$strip,
> = ...