gcp-nrces-fhir
Version:
Google cloud healthcare api NRCES FHIR implimenataion
35 lines • 1.1 kB
TypeScript
import { Composition, COMPOSITOIN, Records } from ".";
import { DOCUMENT_REFERENCE } from "../DocumentReference";
interface Args {
composition: COMPOSITOIN;
systolicBP?: any;
diastolicBP?: any;
heartRate?: any;
respiratoryRate?: any;
spo2?: any;
bodyTemperature?: any;
height?: any;
weight?: any;
bmi?: any;
waistCircumference?: any;
bloodGlucose?: any;
hba1c?: any;
hemoglobin?: any;
bodyFat?: any;
fluidIntake?: any;
calorieIntake?: any;
ageAtMenarche?: any;
lastMenstrualPeriod?: any;
dietType?: any;
tobaccoUse?: any;
alcoholUse?: any;
physicalActivityLevel?: any;
documentReference?: DOCUMENT_REFERENCE[];
}
export declare class WellnessRecordComp extends Composition implements Records {
create: (options: Args, Credentials?: any, DatabasePath?: any) => Promise<any>;
update: (options: Args, Credentials?: any, DatabasePath?: any) => Promise<any>;
getOptions: (options: Args) => Promise<Args>;
}
export {};
//# sourceMappingURL=WellnessRecord.d.ts.map