Files
Athou_commafeed/commafeed-client/src/app/async-thunk.ts

8 lines
227 B
TypeScript
Raw Normal View History

import { createAsyncThunk } from "@reduxjs/toolkit"
2025-06-27 16:29:31 +02:00
import type { AppDispatch, RootState } from "@/app/store"
export const createAppAsyncThunk = createAsyncThunk.withTypes<{
state: RootState
dispatch: AppDispatch
}>()