TypeScript - interface vs type

오픈소스·2023년 6월 6일
0

notation difference: = , ;

  • interface
    interface Xxx {
      ...
    }
  • type
    type Xxx = {
      ...
    };

0개의 댓글