Files
AIEC_Skills/requirement-web/node_modules/zod/v3/helpers/errorUtil.d.cts
闫旭隆 202d1cb5ba 20260109
2026-01-09 11:22:42 +08: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;
}