Patient Information
Heidi allows you to provide patient information for the current patient. When providing patient information as params to Heidi.open()
or Heidi.setPatient()
, you should follow this format:
PatientInfo
Attribute | Type |
---|---|
id | string |
name | string |
gender | string |
dob | string |
TypeScript Interface
interface PatientInfo {
id: string;
name: string;
gender: string;
dob: string;
}