mono/packages/log/dist/zod_schema.d.cts
2025-03-11 11:28:14 +01:00

16 lines
388 B
TypeScript

import { z } from 'zod';
declare const TLogLevelNameSchema: z.ZodEnum<["silly", "trace", "debug", "info", "warn", "error", "fatal"]>;
type LogLevel = z.infer<typeof TLogLevelNameSchema>;
declare enum LogLevelEx {
silly = 0,
trace = 1,
debug = 2,
info = 3,
warn = 4,
error = 5,
fatal = 6
}
export { type LogLevel, LogLevelEx, TLogLevelNameSchema };