Exploring Interfaces in TypeScript

October 22nd, 2022 | ☕️ 4 min read
Photo by Steve Gribble, powered by unsplash.

TypeScript Fundamental Series

  1. Understanding Types in TypeScript
  2. Mastering Functions in TypeScript
  3. Exploring Interfaces in TypeScript
  4. Utilizing Classes in TypeScript
  5. Leveraging Generics in TypeScript
  6. Advanced Type Features in TypeScript

Welcome to the third post in our series on the fundamentals of TypeScript. In this article, we'll dive into the powerful concept of interfaces and explore how they can help you model the structure of your data.

Interfaces are a core feature of TypeScript, and they play a crucial role in defining the shape of objects, function parameters, and return types. Let's get started!

Defining Interfaces Interfaces in TypeScript are used to create custom types that describe the structure of an object. They allow you to define the expected properties, their types, and optional or required status.

Here's an example of an interface that defines the structure of a Person object:

interface Person { name: string; age: number; isStudent: boolean; } let person: Person = { name: 'John Doe', age: 30, isStudent: true };

In this example, the Person interface specifies that an object of this type must have name (a string), age (a number), and isStudent (a boolean) properties.

The person variable is then assigned an object that matches the structure defined by the Person interface.

Optional Properties Interfaces in TypeScript also allow you to define optional properties, which is useful when you have properties that may or may not be present in an object.

interface Person { name: string; age: number; isStudent?: boolean; } let student: Person = { name: 'Alice', age: 20 }; let teacher: Person = { name: 'Bob', age: 40, isStudent: false };

In this example, the isStudent property is marked as optional using the ? syntax. The student object only has the name and age properties, while the teacher object has all three properties.

Readonly Properties Interfaces in TypeScript also support readonly properties, which can be useful when you want to ensure that certain properties cannot be modified after an object is created.

interface Person { readonly id: string; name: string; age: number; } let person: Person = { id: 'abc123', name: 'John Doe', age: 30 }; person.id = 'def456'; // Error: Cannot assign to 'id' because it is a read-only property.

In this example, the id property is marked as readonly, so it cannot be modified after the person object is created.

Extending Interfaces Interfaces in TypeScript can also be extended, allowing you to create new interfaces that inherit the properties and methods of existing ones.

interface Animal { name: string; age: number; } interface Dog extends Animal { breed: string; } let dog: Dog = { name: 'Buddy', age: 5, breed: 'Labrador' };

In this example, the Dog interface extends the Animal interface, inheriting the name and age properties and adding a new breed property.

Interfaces and Functions Interfaces can also be used to define the shape of function parameters and return types:

interface Person { name: string; age: number; } function createPerson(person: Person): Person { return { name: person.name, age: person.age }; } let newPerson = createPerson({ name: 'Alice', age: 25 });

In this example, the createPerson function expects a Person object as its parameter and returns a new Person object.

Interfaces and Classes Interfaces can also be used to define the shape of classes. This can be particularly useful when you want to ensure that a class implements a specific set of properties and methods.

interface Vehicle { make: string; model: string; drive(): void; } class Car implements Vehicle { make: string; model: string; constructor(make: string, model: string) { this.make = make; this.model = model; } drive(): void { console.log(`Driving the ${this.make} ${this.model}.`); } } let myCar = new Car('Toyota', 'Corolla'); myCar.drive(); // Driving the Toyota Corolla.

In this example, the Car class implements the Vehicle interface, ensuring that it has the required make, model, and drive() members.

Interfaces are a powerful tool in TypeScript, allowing you to define and enforce the shape of your data structures. By using interfaces, you can write more maintainable and type-safe code, catching potential issues early in the development process.

In the next blog post, we'll explore how to work with classes in TypeScript, including the use of access modifiers and inheritance.

Discuss on Twitter