일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- array
- Frontend
- CORS
- JavaScript
- til
- 비트 연산자
- v9
- JS
- 프리온보딩
- Component
- 프론트엔드
- 브라우저
- TypeScript
- 타입스크립트
- 리액트
- axios
- 파이어베이스
- 원티드
- react localStorage
- Reducer
- es6
- 프로그래머스
- react
- 컴포넌트
- Redux
- localstorage
- state
- 알고리즘
- 자바스크립트
- firebase
Archives
- Today
- Total
도리쓰에러쓰
[TypeScript] Redux-Toolkit에서 store와 dispatch type 지정 방법 본문
import { configureStore } from '@reduxjs/toolkit'
import menuSlice from './menu-slice'
const store = configureStore({
reducer: { menu: menuSlice.reducer },
})
redux 파일에 아래와 같이 코드가 작성되어 있을 때 store와 dispatch 타입 지정 방법은 아래와 같다.
1. store type
export type storeType = ReturnType<typeof store.getState>
2. dispatch type
export type dispatchType = typeof store.dispatch
'TypeScript > TypeScript' 카테고리의 다른 글
[TypeScript] 유틸리티 타입 (Partial, Pick, Omit) (0) | 2022.12.19 |
---|---|
[TypeScript] 기본 타입 - (2) :: 함수, 익명 함수, 객체 타입 (0) | 2022.12.18 |
[TypeScript] 기본 타입 - (1) :: 원시 타입, any 타입, nolmplicitAny, 변수에 대한 타입 표기) (0) | 2022.11.21 |
Comments