Variable storageSchemaConst
storageSchema: ZodObject<
{
storage: ZodObject<
{
dataSets: ZodDefault<
ZodRecord<
ZodString,
ZodUnion<
readonly [
ZodObject<
{
schemaFile: ZodOptional<(...)>;
schemaType: ZodOptional<(...)>;
source: ZodString;
},
$strip,
>,
ZodObject<{ databaseFile: ZodString; table: ZodString }, $strip>,
],
>,
>,
>;
layers: ZodOptional<
ZodArray<
ZodObject<
{
path: ZodString;
visibility: ZodOptional<ZodEnum<{ exported: ...; private: ... }>>;
writable: ZodOptional<ZodBoolean>;
},
$strip,
>,
>,
>;
},
$strict,
>;
},
$strip,
> = ...