Variable cardIdentityConst

cardIdentity: ZodReadonly<
    ZodObject<
        {
            rank: ZodUnion<
                [
                    ZodType<1 | 2 | 3 | 4 | 5 | 7, ZodTypeDef, 1 | 2 | 3 | 4 | 5 | 7>,
                    ZodNull,
                ],
            >;
            suitIndex: ZodUnion<
                [
                    ZodType<0 | 1 | 2 | 3 | 4 | 5, ZodTypeDef, 0 | 1 | 2 | 3 | 4 | 5>,
                    ZodNull,
                ],
            >;
        },
        "strict",
        ZodTypeAny,
        {
            rank: null
            | 7
            | 3
            | 1
            | 2
            | 4
            | 5;
            suitIndex: null | 0 | 3 | 1 | 2 | 4 | 5;
        },
        {
            rank: null
            | 7
            | 3
            | 1
            | 2
            | 4
            | 5;
            suitIndex: null | 0 | 3 | 1 | 2 | 4 | 5;
        },
    >,
> = ...