Variable AlchemyCraftErrorPropsConst

AlchemyCraftErrorProps: ZodObject<Omit<{
    cause: ZodOptional<ZodString>;
    context: ZodOptional<ZodString>;
    errorCode: ZodOptional<ZodEnum<[ErrorCode, ...ErrorCode[]]>>;
    module: ZodOptional<ZodString>;
    name: ZodString;
    severity: ZodOptional<ZodEnum<[Severity, ...Severity[]]>>;
}, "module" | "context">, "strip", ZodTypeAny, {
    cause?: string;
    errorCode?: ErrorCode;
    name: string;
    severity?: Severity;
}, {
    cause?: string;
    errorCode?: ErrorCode;
    name: string;
    severity?: Severity;
}> = ...

Zod schema for alchemy craft error properties.