Esposter
    Preparing search index...

    Variable todoReminderContentSchemaConst

    todoReminderContentSchema: z.ZodObject<
        {
            items: z.ZodArray<
                z.ZodObject<
                    {
                        dueAt: z.ZodNullable<z.ZodCoercedDate>;
                        id: z.ZodUUID;
                        name: z.ZodString;
                    },
                >,
            >;
        },
    > = ...