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
- react animation
- Hash-table
- React-Native업데이트
- Promise
- rn
- RN업데이트
- CS
- animation
- react-native-image-picker
- axios
- javascript
- hydration mismatch
- Throttle
- RN새로운아키텍쳐
- react
- react-native-permissions
- ios
- 비동기
- no-permission-handler-detected
- promise.all
- Swift
- async
- debounce
- react native
- named type
- private-access-to-photos
- await
- RN아키텍쳐
- motion.div
- react-native
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