team-1/node_modules/zod/v3/helpers/errorUtil.d.ts
2025-08-01 21:10:03 +02:00

9 lines
276 B
TypeScript

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