타입스크립트 인터페이스 병합
-
[TypeScript] 타입스크립트 인터페이스Web/TypeScript 2024. 11. 20. 17:21
- 인터페이스란? 인터페이스는 객체 타입을 지정할 때 사용하는 문법이다. 인터페이스는 다음과 같은 문법을 가진다.interface 타입명 { 속성:타입, ...} 다음은 인터페이스가 병합되는 코드이다.// interface1.tsinterface Person { name: string; age: number;}// interface2.tsinterface Person { email: string; phone?: string;}// main.tsconst john: Person = { name: "John Doe", age: 30, email: "john.doe@example.com", phone: "123-456-7890"};console.log(john); 인터페이스는 상..