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