FILE / Unmei/Frontend

src/api/characters.ts

Исходный файл и его история в репозитории.
FILE 9beee8f833e634853326e62ea979f3ad2f115b21
Files
Frontend/src/api/characters.ts
T
2020-04-25 18:46:23 +03:00

9 lines
264 B
TypeScript

import {http} from "./api";
export const fetchChar = (id: number) =>
http.get(`characters/${id}`)
.then(res => res.data.data);
export const fetchCharNovels = (id: number) =>
http.get(`characters/${id}/novels`)
.then(res => res.data.data);