mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 12:47:11 -05:00
19 lines
457 B
TypeScript
19 lines
457 B
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
interface AudioMessage {
|
|
type: "audio";
|
|
answerSide: boolean;
|
|
index: number;
|
|
}
|
|
|
|
interface UpdateTypedAnswerMessage {
|
|
type: "typed";
|
|
value: string;
|
|
}
|
|
|
|
interface KeyPressMessage {
|
|
type: "keyPress";
|
|
key: string;
|
|
}
|
|
|
|
export type ReviewerRequest = AudioMessage | UpdateTypedAnswerMessage | KeyPressMessage;
|