jccp_a/vuepress/node_modules/zod/v3/helpers/errorUtil.d.ts
hellcat ac91e1fbe4 1
2025-11-12 17:57:30 +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;
}