更新
This commit is contained in:
Vendored
+24
@@ -15,9 +15,33 @@ interface DoctorCallConfig {
|
||||
patientUserId?: string
|
||||
diagnosisId: number | string
|
||||
patientName?: string
|
||||
patientCase?: DoctorPatientCase
|
||||
mode?: 'chat' | 'video'
|
||||
}
|
||||
|
||||
interface DoctorPatientCase {
|
||||
diagnosisId?: number | string
|
||||
name?: string
|
||||
gender?: string
|
||||
age?: string | number
|
||||
height?: string | number
|
||||
weight?: string | number
|
||||
diagnosisDate?: string
|
||||
appointmentDate?: string
|
||||
clinicalDiagnosis?: string
|
||||
chiefComplaint?: string
|
||||
presentIllness?: string
|
||||
pastHistory?: string
|
||||
allergyHistory?: string
|
||||
personalHistory?: string
|
||||
familyHistory?: string
|
||||
currentMedication?: string
|
||||
tongue?: string
|
||||
pulse?: string
|
||||
prescriptionOpinion?: string
|
||||
remark?: string
|
||||
}
|
||||
|
||||
interface DoctorCallApi {
|
||||
start(config: DoctorCallConfig): Promise<void>
|
||||
hangup(): Promise<void>
|
||||
|
||||
Reference in New Issue
Block a user