Interface CardIdentity

interface CardIdentity {
    rank: null | 7 | 3 | 1 | 2 | 4 | 5;
    suitIndex: null | 0 | 3 | 1 | 2 | 4 | 5;
}

Hierarchy

Properties

Properties

rank: null | 7 | 3 | 1 | 2 | 4 | 5 = ...

null represents an unknown rank.

suitIndex: null | 0 | 3 | 1 | 2 | 4 | 5 = ...

null represents an unknown suit index.