일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Route53
- cognito
- gitignore
- timeinput
- jimp
- yml
- API Gateway
- domtoimage
- JavaScript
- electron-builder
- signIn
- react-sortable-hoc
- xlsx
- 가상 DOM
- react DOM
- react-xml-parser
- react-admin
- react
- axios
- react-hook-form
- AWS
- dynamodb
- electron
- TypeScript
- node
- window.postMessage
- readableStream
- zerocho
- 프로그래머스
- icrawler
Archives
- Today
- Total
목록interface (1)
꾸준히 공부하는 개발자
[Typescript] 3일차 - interface와 type
Interface interface PartialPointX { x: number; } interface Point extends PartialPointX { y: number; } //상속 Type type PartialPointX = { x: number; }; type Point = PartialPointX & { y: number; }; //상속 섞어서 상속도 가능하다. type PartialPointX = { x: number; }; interface Point extends PartialPointX { y: number; } interface PartialPointX { x: number; } type Point = PartialPointX & { y: number; }; Implements ..
Typescript
2020. 1. 23. 15:31