2025SELab2-project-Dwengo/frontend/src/controllers/questions.ts
2025-04-03 12:40:32 +02:00

5 lines
170 B
TypeScript

import type { QuestionDTO, QuestionId } from "@dwengo-1/common/interfaces/question";
export interface QuestionsResponse {
questions: QuestionDTO[] | QuestionId[];
}