'Property has no initializer and is not definitely assigned in the constructor (when declaring new variables in typescript)

export class Patient {

  icNumber: string;
  fullname: string;
  password: string;
  birthday: Date;
  gender: string;
  address: string;
  email: string;
  phoneNumber: string;
  emergencyContactNumber: string;
  emergencyRelationship: string;
  height: number;
  weight: number;
}

typescript errors: no initializers

All lines have the same error. How can I resolve this issue?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source