/
gr.ev.vl
/
TestGen
Обзор
Документация
Войти
/
gr.ev.vl
/
TestGen
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master2
backend/frontend/src/api/misconceptions.ts
11 строк
356 B
gr.ev.vl
Initial commit
06 июн 2026, 02:41
06 июн 2026, 02:41
02fb1fb
Код
Авторство
О чём код?
import apiClient from "./client"; import type { Misconception } from "../types/question"; export async function listMisconceptions(params: { subtopic_id?: string; status?: string; limit?: number; }): Promise<{ items: Misconception[]; total: number }> { const response = await apiClient.get("/misconceptions", { params }); return response.data; }