Skip to content
On this page

type vs interface

Title
type vs interface
Category
TypeScript
Tags
Aliases
type vs interfacetype과 interface의 차이점
Created
2 years ago
Updated
last year
  • 개념적인 차이
    • type alias는 타입에 별칭을 붙이는 것
      • primitive 타입도 별칭을 붙이는게 가능
    • interface는 새 객체 타입을 생성하는 것
  • 중요한 차이
    • Declaration Merging
      • interface는 같은 이름의 타입을 선언하는 경우 병합된다.
      • type은 이미 존재하는 같은 이름의 타입을 다시 선언할 수 없다.
    • Union, Intersect 와 같은 기능은 type 에서만 가능하다.
  • 직접 겪은 문제

휴리스틱으로는, 타입의 기능이 필요해질 때까지 interface를 사용하라.

References

Released under the MIT License.