Interface KeyboardTesterState

interface KeyboardTesterState {
    scores?: {
        [id: string]: number;
    };
    testedInputs?: {
        [key: string]: string;
    };
    topScore?: number;
}

Properties

scores?: {
    [id: string]: number;
}

Type declaration

  • [id: string]: number
testedInputs?: {
    [key: string]: string;
}

Type declaration

  • [key: string]: string
topScore?: number