import { apiFetch } from "."; import { Reviewer } from "../types/review"; export const getReviewer = async (token: string) => { return await apiFetch(`/review/${token}`); }; export const getReviewerSubmissions = async (token: string) => { return await apiFetch(`/review/${token}/submissions`); };