/**
 * A vehicle is a thing that goes places
 */
export default class Vehicle {
  /**
   * Create a new vehicle
   * @param {number} numWheels Number of wheels
   */
  constructor(protected numWheels: number) {}
  /**
   * Drive the vehicle
   * @returns {string}
   */
  public drive() {
    return `Driving with all ${this.numWheels} wheels`;
  }
}