enzostvs's picture
enzostvs HF staff
rework generations + db
1e9a0af
raw
history blame contribute delete
168 Bytes
export interface QuizzType {
prompts: Array<PromptType>,
}
export interface PromptType {
text: string,
id: string,
is_correct: boolean,
file_name?: string,
}