semblance-dev/node_modules/zod/lib/helpers/errorUtil.d.ts
2025-12-19 19:26:16 +00:00

9 lines
288 B
TypeScript
Executable file

export declare namespace errorUtil {
type ErrMessage = string | {
message?: string;
};
const errToObj: (message?: ErrMessage | undefined) => {
message?: string | undefined;
};
const toString: (message?: ErrMessage | undefined) => string | undefined;
}