1 import type { Writable } from 'svelte/store'; 2 3 export type BallotValidationErrorsStore = Writable<Set<string>>; 4 5 export const ballotValidationContextKey = Symbol('rpgf-ballot-validation-errors');