@trivia-api/fetch
Version:
Functions to fetch data from The Trivia API.
20 lines (19 loc) • 1.14 kB
TypeScript
export { ApiError } from './core/ApiError';
export { CancelablePromise, CancelError } from './core/CancelablePromise';
export { OpenAPI } from './core/OpenAPI';
export type { OpenAPIConfig } from './core/OpenAPI';
export type { BaseQuestion } from './models/BaseQuestion';
export type { Category } from './models/Category';
export type { ImageChoiceQuestion } from './models/ImageChoiceQuestion';
export type { ImageOption } from './models/ImageOption';
export type { Quiz } from './models/Quiz';
export type { ReportQuestionBody } from './models/ReportQuestionBody';
export type { SearchQuestionsBody } from './models/SearchQuestionsBody';
export type { SearchQuestionsResponse } from './models/SearchQuestionsResponse';
export type { Session } from './models/Session';
export type { TextChoiceQuestion } from './models/TextChoiceQuestion';
export type { V2Question } from './models/V2Question';
export { MetaService } from './services/MetaService';
export { QuestionsService } from './services/QuestionsService';
export { QuizzesService } from './services/QuizzesService';
export { SessionsService } from './services/SessionsService';