10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
import { baseURL } from "./baseUrl";
|
|
|
|
export const getContentReferenceAPI = (malId: number) => {
|
|
return {
|
|
baseURL,
|
|
getMediaFullInfo: `/anime/${malId}/full`,
|
|
getMediaCharactersWithVA: `/anime/${malId}/characters`,
|
|
};
|
|
};
|