Files
bigwo/dev-assistant-mcp/node_modules/zod/v3/helpers/errorUtil.d.ts

10 lines
276 B
TypeScript
Raw Normal View History

2026-03-12 12:47:56 +08:00
export declare namespace errorUtil {
type ErrMessage = string | {
message?: string | undefined;
};
const errToObj: (message?: ErrMessage) => {
message?: string | undefined;
};
const toString: (message?: ErrMessage) => string | undefined;
}