import { handleFetch } from './helpers'; import { Translation } from '../stores/types/TranslationStoreModel'; export default class TranslationsApi { public static async getPageTranslations(pageId: string): Promise { const response = await handleFetch(`/pages/translations/${pageId}`); return response.json(); } }