Files
flashcards-example-project/src/services/base-api.ts
2023-12-30 19:18:54 +01:00

10 lines
282 B
TypeScript

import { baseQueryWithReauth } from '@/services/base-query-with-reauth'
import { createApi } from '@reduxjs/toolkit/query/react'
export const baseApi = createApi({
baseQuery: baseQueryWithReauth,
endpoints: () => ({}),
reducerPath: 'baseApi',
tagTypes: ['Decks', 'Me'],
})