일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- axios
- react
- timeinput
- xlsx
- API Gateway
- TypeScript
- signIn
- window.postMessage
- AWS
- cognito
- 프로그래머스
- domtoimage
- icrawler
- 가상 DOM
- yml
- readableStream
- node
- dynamodb
- zerocho
- Route53
- react-sortable-hoc
- electron-builder
- electron
- react DOM
- react-xml-parser
- jimp
- gitignore
- react-admin
- react-hook-form
- JavaScript
Archives
- Today
- Total
꾸준히 공부하는 개발자
[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
interface Point {
x: number;
y: number;
}
class SomePoint implements Point {
x: 1;
y: 2;
}
type Point2 = {
x: number;
y: number;
};
class SomePoint2 implements Point2 {
x: 1;
y: 2;
}
type PartialPoint = { x: number; } | { y: number; };
// FIXME: can not implement a union type
class SomePartialPoint implements PartialPoint {
x: 1;
y: 2;
}
implements를 한 타입에 종속된 속성들을 무조건 선언해줘야한다?
옛 버전에서는 interface와 type의 기능이 많이 차이가났지만, 현재에 와서는 거의 차이가없다.
내가 본것중에는
type은 이런식으로 선언해야해서 중복선언이 안되지만 Interface는 중복선언이 되는것정도? 밖에 느끼지못했다.
'Typescript' 카테고리의 다른 글
[Typescript] 2일차 - 기본 타입들과 enum (0) | 2020.01.20 |
---|---|
[Typescript] 1일차 - setting 및 알아보기 (0) | 2020.01.17 |
Comments