Variable MJLibraryItemSchemaConst
MJLibraryItemSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
ID: ZodString;
Library: ZodString;
LibraryID: ZodString;
Name: ZodString;
Type: ZodUnion<
[
ZodLiteral<"Class">,
ZodLiteral<"Function">,
ZodLiteral<"Interface">,
ZodLiteral<"Module">,
ZodLiteral<"Type">,
ZodLiteral<"Variable">,
],
>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
ID?: string;
Library?: string;
LibraryID?: string;
Name?: string;
Type?: "Type"
| "Class"
| "Function"
| "Interface"
| "Module"
| "Variable";
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
ID?: string;
Library?: string;
LibraryID?: string;
Name?: string;
Type?: "Type"
| "Class"
| "Function"
| "Interface"
| "Module"
| "Variable";
},
> = ...
zod schema definition for the entity MJ: Library Items