Vehicle Project This project demonstrates the use of TypeScript interfaces and classes. It defines a Vehicle interface, implements it in a Car class, and shows how to create and interact with an instance of that class.

Features Defines a Vehicle interface with make, model, year properties, and a start method. Implements a Car class that adheres to the Vehicle interface. Includes a start method in the Car class that logs "Car engine started" to the console.