Client - refactor store interfaces (move w/ types)

This commit is contained in:
Sam
2021-08-22 20:38:22 +02:00
parent 3b8ac44433
commit cac9607489
23 changed files with 124 additions and 127 deletions

View File

@ -2,9 +2,9 @@ import { AxiosError } from 'axios'
import { ActionContext } from 'vuex'
import { ROOT_STORE } from '@/store/constants'
import { IRootState } from '@/store/modules/root/interfaces'
import { IStatisticsState } from '@/store/modules/statistics/interfaces'
import { IUserState } from '@/store/modules/user/interfaces'
import { IRootState } from '@/store/modules/root/types'
import { IStatisticsState } from '@/store/modules/statistics/types'
import { IUserState } from '@/store/modules/user/types'
export const getApiUrl = (): string => {
return process.env.NODE_ENV === 'production'