export const EventSchema = type({
title: "string",
description: "string | null",
participants: `{UserSchema}[]`, // Thought this would work because of the pattern of the library
happens_at: "Date",
created_by: UserSchema,
});
export const EventSchema = type({
title: "string",
description: "string | null",
participants: `{UserSchema}[]`, // Thought this would work because of the pattern of the library
happens_at: "Date",
created_by: UserSchema,
});