Variable ExportedNoteConst
ExportedNote: ZodObject<
{
createdAt: $ZodBranded<ZodDate, "CreatedAt", "out">;
exportedAt: $ZodBranded<ZodDate, "ExportedAt", "out">;
id: $ZodBranded<ZodDefault<ZodUUID>, "Id", "out">;
markdown: $ZodBranded<ZodString, "Markdown", "out">;
status: ZodLiteral<"EXPORTED">;
title: $ZodBranded<ZodString, "NoteTitle", "out">;
userId: $ZodBranded<ZodString, "UserId", "out">;
},
$strip,
> = ...
Zod schema for an exported note.