Files
lcbp3.np-dms.work/frontend/node_modules/zod/v3/helpers/errorUtil.d.cts
2025-09-21 20:29:15 +07:00

10 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;
}