Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 | 31 |
Tags
- private-access-to-photos
- Hash-table
- animation
- CS
- await
- react
- debounce
- react-native-image-picker
- axios
- ios
- RN새로운아키텍쳐
- RN아키텍쳐
- no-permission-handler-detected
- React-Native업데이트
- Throttle
- Swift
- hydration mismatch
- react animation
- react native
- RN업데이트
- rn
- Promise
- promise.all
- 비동기
- react-native
- async
- react-native-permissions
- javascript
- named type
- motion.div
Archives
- Today
- Total
목록interface (1)
하루살이 개발일지
Type Aliases 에 대하여TypeScript에서의 기본 type타입스크립트에 존재하는 기본 타입StringBooleanNumberArrayTupleEnumAdvanced types 타입 별칭(Type Aliases)특정 타입이나 인터페이스를 참조할 수 있는 타입 변수type 키워드를 붙여 만듦새로운 타입 값을 생성하는 것이 아닌 정의한 타입에 대해 나중에 쉽게 참고할 수 있게 ‘이름’을 부여한 것과 같음type MyNumber = number;type User = { id: number; name: string; email: string;} Type Aliases의 특징type ErrorCode = string | number;type Answer = string | number;union ..
웹개발/TypeScript
2023. 7. 13. 20:04