import { DATA_URL, PROCEDURES, } from 'config' import { callApi } from 'helpers' const proc = PROCEDURES.get_subscriptions type Tournament = { id: number, name_eng: string, name_rus: string, sport: number, } export type SubscriptionType = { id: number, lexic: number, tournaments: Array, } export const getSubscriptions = (): Promise> => { const config = { body: { params: {}, proc, }, } return callApi({ config, url: DATA_URL, }) }