interface BallotConfig {
    ballotType: string;
    canCreate?: boolean;
    creatorGroupId: string;
    creatorGroupUrl: string;
    description?: string;
    historicGroupPrefix?: string;
    isDefault?: boolean;
    latestVoterGroupHashUrl?: string;
    makeHistoricVoterGroupUrl?: ((hash) => string);
    name: string;
    passportAppUrl: string;
    passportServerUrl: string;
    voterGroupId: string;
    voterGroupUrl: string;
}

Properties

ballotType: string
canCreate?: boolean
creatorGroupId: string
creatorGroupUrl: string
description?: string
historicGroupPrefix?: string
isDefault?: boolean
latestVoterGroupHashUrl?: string
makeHistoricVoterGroupUrl?: ((hash) => string)

Type declaration

    • (hash): string
    • Parameters

      • hash: string

      Returns string

name: string
passportAppUrl: string
passportServerUrl: string
voterGroupId: string
voterGroupUrl: string

Generated using TypeDoc