/*1Quizizz-cheat2Copyright (C) gbaranski34This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.56This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.78You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.910github repository: https://github.com/gbaranski/quizizz-cheat11email: [email protected]12*/13141516export interface VueElement extends HTMLElement {17__vue__: any;18}1920interface QuizQuestionOption {21text: string;22}2324export interface QuizQuestion {25_id: string;26structure: {27answer: number | number[];28options?: QuizQuestionOption[];29query: {30text: string;31answer: number;32}33};34}3536export interface QuizInfo {37data: {38questions: QuizQuestion[];39}40}41424344