feat: pretty build output

This commit is contained in:
2025-09-19 18:49:09 +02:00
parent 3593228aa8
commit d55573b2db
5 changed files with 13 additions and 5 deletions

View File

@@ -2,6 +2,7 @@ import z from "zod";
import { event } from "../../libraries/event.ts";
import { EventFactory } from "../../libraries/event-factory.ts";
import { Prettify } from "../../types/utilities.ts";
export const auditor = z.strictObject({ auditor: z.string() });
@@ -33,3 +34,5 @@ export const events = new EventFactory([
]);
export type Events = typeof events;
export type EventRecord = Prettify<Events["$events"][number]["$record"]>;