mirror of
https://github.com/ankitects/anki.git
synced 2025-12-09 21:06:56 -05:00
9 lines
264 B
TypeScript
9 lines
264 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;
|
|
}
|
|
|
|
export type ReviewerRequest = AudioMessage;
|