TypeScript Interfaces
In this tutorial, we will learn about TypeScript Interfaces. An interface defines what members (properties, functions) an object must have. For example, we define that a interface ICar has two properties 'make', and 'name' then all objects which implements this interface must have these two properties. In TypeScript interface, we can define only properties and functions signatures. We do not p...