turkmentv_front/typings/quizQuestions.type.ts

8 lines
255 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
import { Question } from '@/models/quizQuestions.model';
import { Dispatch, SetStateAction } from 'react';
export interface IQuizQuestions {
questionsData: Question[] | undefined;
setQuestionsData: Dispatch<SetStateAction<Question[] | undefined>>;
}