volleyball-dev-frontend/node_modules/zod/lib/helpers/errorUtil.d.ts
2025-06-02 16:42:16 +00:00

10 lines
288 B
TypeScript

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