Skip to content

Commit

Permalink
Add clarifying comments
Browse files Browse the repository at this point in the history
  • Loading branch information
arsalansufi committed Oct 2, 2023
1 parent 60f97a5 commit d68f8d5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions libs/backend/src/cast_vote_records/export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,21 @@ interface ScannerStateUnchangedByExport {

interface CentralScannerOptions {
scannerType: 'central';
/**
* A minimal export includes only the images that are absolutely necessary for tabulation, i.e.
* images for accepted ballots with write-ins.
*/
isMinimalExport?: boolean;
}

interface PrecinctScannerOptions {
scannerType: 'precinct';
arePollsClosing?: boolean;
/**
* Precinct scanners export continuously as ballots are cast, but also still support full exports
* of all cast ballots. (Central scanners, on the other hand, don't export continuously and only
* support full exports.)
*/
isFullExport?: boolean;
}

Expand Down

0 comments on commit d68f8d5

Please sign in to comment.