Files
QR-Invoice/node_modules/zod/v3/helpers/errorUtil.d.ts
2026-01-12 13:12:46 +01: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;
}