interface County {
    uid: string;
    name: string;
    abbr: string;
    code: number;
    state: number;
    fips: string;
    totalRegisteredVoters: number;
    isTown: boolean;
    isPseudoCounty: boolean;
    containingCounty: number;
    maxAbsenteeBallotsExpected: number;
    absenteeMethod: number;
    countyExpectedVoteStratum: string;
    countyGeoStratum: string;
    countyPartyStratum: string;
}

Properties

uid: string
name: string
abbr: string
code: number
state: number
fips: string
totalRegisteredVoters: number
isTown: boolean
isPseudoCounty: boolean
containingCounty: number
maxAbsenteeBallotsExpected: number
absenteeMethod: number
countyExpectedVoteStratum: string
countyGeoStratum: string
countyPartyStratum: string

Generated using TypeDoc