Checking possible answers in /ask

This commit is contained in:
mrfry 2022-02-21 20:43:52 +01:00
parent 799930b3e1
commit 5f12284bb8
4 changed files with 51 additions and 2 deletions

View file

@ -4,6 +4,12 @@ export interface QuestionData {
type: string
images?: Array<string>
hashedImages?: Array<string>
possibleAnswers?:
| Array<string>
| Array<{
text: string
selectedByUser: boolean
}>
}
export interface Question {