@alepha/devtools 0.11.2 → 0.11.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +0,0 @@
1
- import { type Static, t } from "@alepha/core";
2
- import type { LogEntry } from "@alepha/logger";
3
-
4
- export const devLogEntrySchema = t.object({
5
- formatted: t.text(),
6
- entry: t.any(), // Use any since LogEntry has Date instead of string for timestamp
7
- });
8
-
9
- export type DevLogEntry = Static<typeof devLogEntrySchema> & {
10
- entry: LogEntry;
11
- };