UNPKG

@trivia-api/models

Version:

Models for The Trivia API.

13 lines (12 loc) 505 B
export * from "./TextChoiceQuestionWithImage"; export type { BaseQuestion, ImageChoiceQuestion, ImageOption, V2Question, TextChoiceQuestion, TextInputQuestion, Category, SearchQuestionsBody, } from "@trivia-api/client"; /** * @openapi * components: * schemas: * V2Question: * oneOf: * - $ref: '#/components/schemas/TextChoiceQuestion' * - $ref: '#/components/schemas/ImageChoiceQuestion' * - $ref: '#/components/schemas/TextInputQuestion' */