일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 프로그래머스
- API Gateway
- yml
- xlsx
- cognito
- AWS
- react-xml-parser
- electron
- signIn
- electron-builder
- axios
- react-sortable-hoc
- window.postMessage
- node
- domtoimage
- react-admin
- 가상 DOM
- Route53
- dynamodb
- readableStream
- icrawler
- jimp
- TypeScript
- react-hook-form
- JavaScript
- gitignore
- react DOM
- zerocho
- timeinput
- react
Archives
- Today
- Total
목록interface (1)
꾸준히 공부하는 개발자

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