Spaces:
Running
Running
export interface QuizzType { | |
prompts: Array<PromptType>, | |
} | |
export interface PromptType { | |
text: string, | |
id: string, | |
is_correct: boolean, | |
file_name?: string, | |
} |