TypeScript: interface vs type
7 April 2024 (Updated 7 April 2024)
Types and interfaces can be used interchangeably in most scenarios but there are a few key differences.
1. An interface can be augmented but a type cannot be
This code runs fine. The second declaration of the Person
interface “augments” any previous Person
interface so that the Person
interface includes the name
, age
, and gender
properties.
Doing the same using a type will cause an error:

Types support mapped types
A type
lets you use mapped types:
You can’t do that with an interface
.
Tagged:
TypeScript
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment