ImportEvent:
    | {
        type: "INIT";
        expectedCount: 12 | 24;
    }
    | {
        type: "SET_WORD";
        position: number;
        word: string;
    }
    | {
        type: "CLEAR_WORD";
        position: number;
    }
    | {
        type: "CHECK";
    }
    | {
        type: "RESET";
    }