enzostvs's picture
enzostvs HF Staff
work in progress. end page and error management are missing
091969f
raw
history blame
170 Bytes
export interface QuizzType {
prompts: Array<PromptType>,
}
export interface PromptType {
prompt: string,
id: string,
is_correct: boolean,
file_name?: string,
}