Variable TransmutedErrorPropsConst

TransmutedErrorProps: ZodObject<{
    cause: ZodOptional<ZodString>;
    context: ZodOptional<ZodString>;
    errorCode: ZodOptional<ZodEnum<[ErrorCode, ...ErrorCode[]]>>;
    message: ZodString;
    module: ZodOptional<ZodString>;
    name: ZodString;
    origin: ZodOptional<ZodUnknown>;
    payload: ZodOptional<ZodRecord<ZodString, ZodUnknown>>;
    severity: ZodOptional<ZodEnum<[Severity, ...Severity[]]>>;
}, "strip", ZodTypeAny, {
    cause?: string;
    context?: string;
    errorCode?: ErrorCode;
    message: string;
    module?: string;
    name: string;
    origin?: unknown;
    payload?: Record<string, unknown>;
    severity?: Severity;
}, {
    cause?: string;
    context?: string;
    errorCode?: ErrorCode;
    message: string;
    module?: string;
    name: string;
    origin?: unknown;
    payload?: Record<string, unknown>;
    severity?: Severity;
}> = ...

Zod schema for the properties of a TransmutedError.