@medplum/core 4.1.6 → 4.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +7 -7
- package/dist/cjs/index.cjs.map +4 -4
- package/dist/cjs/index.d.ts +89 -1
- package/dist/esm/index.d.ts +89 -1
- package/dist/esm/index.mjs +7 -7
- package/dist/esm/index.mjs.map +4 -4
- package/package.json +3 -3
package/dist/cjs/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ import { ConceptMap } from '@medplum/fhirtypes';
|
|
|
14
14
|
import type { CustomTableLayout } from 'pdfmake/interfaces';
|
|
15
15
|
import { Device } from '@medplum/fhirtypes';
|
|
16
16
|
import { DiagnosticReport } from '@medplum/fhirtypes';
|
|
17
|
+
import { DocumentReference } from '@medplum/fhirtypes';
|
|
17
18
|
import { ElementDefinition } from '@medplum/fhirtypes';
|
|
18
19
|
import { ElementDefinitionBinding } from '@medplum/fhirtypes';
|
|
19
20
|
import { Encounter } from '@medplum/fhirtypes';
|
|
@@ -47,6 +48,7 @@ import { Reference } from '@medplum/fhirtypes';
|
|
|
47
48
|
import { RelatedPerson } from '@medplum/fhirtypes';
|
|
48
49
|
import { Resource } from '@medplum/fhirtypes';
|
|
49
50
|
import { ResourceType } from '@medplum/fhirtypes';
|
|
51
|
+
import { SampledData } from '@medplum/fhirtypes';
|
|
50
52
|
import { SearchParameter } from '@medplum/fhirtypes';
|
|
51
53
|
import { StructureDefinition } from '@medplum/fhirtypes';
|
|
52
54
|
import { StructureMap } from '@medplum/fhirtypes';
|
|
@@ -89,6 +91,23 @@ export declare const AccessPolicyInteraction: {
|
|
|
89
91
|
|
|
90
92
|
export declare type AccessPolicyInteraction = (typeof AccessPolicyInteraction)[keyof typeof AccessPolicyInteraction];
|
|
91
93
|
|
|
94
|
+
export declare const AckCode: {
|
|
95
|
+
/** AA - Application Accept */
|
|
96
|
+
readonly AA: "AA";
|
|
97
|
+
/** AE - Application Error */
|
|
98
|
+
readonly AE: "AE";
|
|
99
|
+
/** AR - Application Reject */
|
|
100
|
+
readonly AR: "AR";
|
|
101
|
+
/** CA - Commit Accept */
|
|
102
|
+
readonly CA: "CA";
|
|
103
|
+
/** CE - Commit Error */
|
|
104
|
+
readonly CE: "CE";
|
|
105
|
+
/** CR - Commit Reject */
|
|
106
|
+
readonly CR: "CR";
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
export declare type AckCode = keyof typeof AckCode;
|
|
110
|
+
|
|
92
111
|
/**
|
|
93
112
|
* Adds the supplied profileUrl to the resource.meta.profile if it is not already
|
|
94
113
|
* specified
|
|
@@ -632,6 +651,13 @@ export declare function createConstraintIssue(expression: string, constraint: Co
|
|
|
632
651
|
|
|
633
652
|
export declare const created: OperationOutcome;
|
|
634
653
|
|
|
654
|
+
export declare interface CreateDocumentReferenceOptions extends CreateBinaryOptions {
|
|
655
|
+
/**
|
|
656
|
+
* Optional additional fields for the DocumentReference resource.
|
|
657
|
+
*/
|
|
658
|
+
readonly additionalFields?: Omit<Partial<DocumentReference>, 'content'>;
|
|
659
|
+
}
|
|
660
|
+
|
|
635
661
|
/**
|
|
636
662
|
* Creates a serializable JSON payload for the `FHIRcast` protocol
|
|
637
663
|
*
|
|
@@ -702,6 +728,28 @@ export declare type CurrentContext<T extends FhircastAnchorResourceType | '' = F
|
|
|
702
728
|
context: FhircastEventContext<AnchorResourceOpenEvent<T>>[];
|
|
703
729
|
} : never;
|
|
704
730
|
|
|
731
|
+
export declare class DataSampler {
|
|
732
|
+
private code?;
|
|
733
|
+
private unit?;
|
|
734
|
+
private readonly sampling?;
|
|
735
|
+
private readonly dataPoints;
|
|
736
|
+
/**
|
|
737
|
+
* @param opts - Optional parameters.
|
|
738
|
+
* @param opts.code - Code for data points.
|
|
739
|
+
* @param opts.unit - Unit for data points.
|
|
740
|
+
* @param opts.sampling - Sampling information for high-frequency Observations.
|
|
741
|
+
*/
|
|
742
|
+
constructor(opts?: {
|
|
743
|
+
code?: CodeableConcept;
|
|
744
|
+
unit?: QuantityUnit;
|
|
745
|
+
sampling?: SamplingInfo;
|
|
746
|
+
});
|
|
747
|
+
addObservation(obs: Observation): void;
|
|
748
|
+
addData(...data: number[]): void;
|
|
749
|
+
private checkUnit;
|
|
750
|
+
summarize(code: CodeableConcept, fn: StatsFn): Observation;
|
|
751
|
+
}
|
|
752
|
+
|
|
705
753
|
export declare type DataTypesMap = {
|
|
706
754
|
[type: string]: InternalTypeSchema;
|
|
707
755
|
};
|
|
@@ -920,6 +968,10 @@ declare class EventTarget_2 {
|
|
|
920
968
|
}
|
|
921
969
|
export { EventTarget_2 as EventTarget }
|
|
922
970
|
|
|
971
|
+
export declare function expandSampledData(sample: SampledData): number[];
|
|
972
|
+
|
|
973
|
+
export declare function expandSampledObservation(obs: Observation): Observation[];
|
|
974
|
+
|
|
923
975
|
export declare type ExtendedElementProperties = {
|
|
924
976
|
readonly: boolean;
|
|
925
977
|
hidden: boolean;
|
|
@@ -1881,6 +1933,11 @@ export declare interface GoogleLoginRequest extends BaseLoginRequest {
|
|
|
1881
1933
|
readonly createUser?: boolean;
|
|
1882
1934
|
}
|
|
1883
1935
|
|
|
1936
|
+
export declare interface Hl7AckOptions {
|
|
1937
|
+
ackCode: AckCode;
|
|
1938
|
+
errSegment?: Hl7Segment;
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1884
1941
|
/**
|
|
1885
1942
|
* The Hl7Context class represents the parsing context for an HL7 message.
|
|
1886
1943
|
*
|
|
@@ -2033,9 +2090,10 @@ export declare class Hl7Message {
|
|
|
2033
2090
|
toString(): string;
|
|
2034
2091
|
/**
|
|
2035
2092
|
* Returns an HL7 "ACK" (acknowledgement) message for this message.
|
|
2093
|
+
* @param options - The optional options to configure the "ACK" message.
|
|
2036
2094
|
* @returns The HL7 "ACK" message.
|
|
2037
2095
|
*/
|
|
2038
|
-
buildAck(): Hl7Message;
|
|
2096
|
+
buildAck(options?: Hl7AckOptions): Hl7Message;
|
|
2039
2097
|
private buildAckMessageType;
|
|
2040
2098
|
/**
|
|
2041
2099
|
* Parses an HL7 message string into an Hl7Message object.
|
|
@@ -4145,6 +4203,15 @@ export declare class MedplumClient extends TypedEventTarget<MedplumClientEventMa
|
|
|
4145
4203
|
* @deprecated Use `createMedia` with `CreateMediaOptions` instead. To be removed in a future version.
|
|
4146
4204
|
*/
|
|
4147
4205
|
uploadMedia(contents: string | Uint8Array | File | Blob, contentType: string, filename: string | undefined, additionalFields?: Partial<Media>, options?: MedplumRequestOptions): Promise<Media>;
|
|
4206
|
+
/**
|
|
4207
|
+
* Creates a FHIR DocumentReference resource with the provided data content.
|
|
4208
|
+
*
|
|
4209
|
+
* @category Create
|
|
4210
|
+
* @param createDocumentReferenceOptions - The document reference creation options. See `CreateDocumentReferenceOptions` for full details.
|
|
4211
|
+
* @param requestOptions - Optional fetch options.
|
|
4212
|
+
* @returns The new document reference resource.
|
|
4213
|
+
*/
|
|
4214
|
+
createDocumentReference(createDocumentReferenceOptions: CreateDocumentReferenceOptions, requestOptions?: MedplumRequestOptions): Promise<DocumentReference>;
|
|
4148
4215
|
/**
|
|
4149
4216
|
* Performs Bulk Data Export operation request flow. See The FHIR "Bulk Data Export" for full details: https://build.fhir.org/ig/HL7/bulk-data/export.html#bulk-data-export
|
|
4150
4217
|
* @param exportLevel - Optional export level. Defaults to system level export. 'Group/:id' - Group of Patients, 'Patient' - All Patients.
|
|
@@ -4869,6 +4936,10 @@ export declare interface MedplumRequestOptions extends RequestInit {
|
|
|
4869
4936
|
* Optional max number of retries that should be made in the case of a failed request. Default is `2`.
|
|
4870
4937
|
*/
|
|
4871
4938
|
maxRetries?: number;
|
|
4939
|
+
/**
|
|
4940
|
+
* Optional maximum time to wait between retries, in milliseconds; defaults to `2000` (2 s).
|
|
4941
|
+
*/
|
|
4942
|
+
maxRetryTime?: number;
|
|
4872
4943
|
/**
|
|
4873
4944
|
* Optional flag to disable auto-batching for this specific request.
|
|
4874
4945
|
* Only applies when the client is configured with auto-batching enabled.
|
|
@@ -5540,6 +5611,8 @@ export declare const protectedResourceTypes: string[];
|
|
|
5540
5611
|
|
|
5541
5612
|
export declare type ProtocolsProvider = null | string | string[];
|
|
5542
5613
|
|
|
5614
|
+
export declare type QuantityUnit = Pick<Quantity, 'unit' | 'code' | 'system'>;
|
|
5615
|
+
|
|
5543
5616
|
/**
|
|
5544
5617
|
* QueryTypes defines the different ways to specify FHIR search parameters.
|
|
5545
5618
|
*
|
|
@@ -5794,6 +5867,8 @@ export declare type ResourceWithCode = Resource & Code;
|
|
|
5794
5867
|
|
|
5795
5868
|
export declare const RXNORM = "http://www.nlm.nih.gov/research/umls/rxnorm";
|
|
5796
5869
|
|
|
5870
|
+
export declare type SamplingInfo = Omit<SampledData, 'data'>;
|
|
5871
|
+
|
|
5797
5872
|
/**
|
|
5798
5873
|
* Checks that there is an access policy permitting the given resource interaction, returning the matching policy object.
|
|
5799
5874
|
* @param resource - The resource being acted upon.
|
|
@@ -5970,6 +6045,8 @@ export declare function splitN(str: string, delim: string, n: number): string[];
|
|
|
5970
6045
|
*/
|
|
5971
6046
|
export declare function splitSearchOnComma(input: string): string[];
|
|
5972
6047
|
|
|
6048
|
+
export declare type StatsFn = (data: number[]) => number | Quantity;
|
|
6049
|
+
|
|
5973
6050
|
/**
|
|
5974
6051
|
* Reads data from a Readable stream and returns a Promise that resolves with a Buffer containing all the data.
|
|
5975
6052
|
* @param stream - The Readable stream to read from.
|
|
@@ -6143,6 +6220,17 @@ export declare type SubscriptionRequest = {
|
|
|
6143
6220
|
*/
|
|
6144
6221
|
export declare function subsetResource<T extends Resource>(resource: T | undefined, properties: string[]): T | undefined;
|
|
6145
6222
|
|
|
6223
|
+
/**
|
|
6224
|
+
* Summarizes a group of Observations into a single computed summary value, with the individual values
|
|
6225
|
+
* preserved in `Observation.component.valueSampledData`.
|
|
6226
|
+
*
|
|
6227
|
+
* @param observations - The Observations to summarize.
|
|
6228
|
+
* @param summaryCode - The code for the summarized value.
|
|
6229
|
+
* @param summarizeFn - Function to summarize the data points.
|
|
6230
|
+
* @returns - The summary Observation resource.
|
|
6231
|
+
*/
|
|
6232
|
+
export declare function summarizeObservations(observations: Observation[] | Bundle<Observation>, summaryCode: CodeableConcept, summarizeFn: StatsFn): Observation;
|
|
6233
|
+
|
|
6146
6234
|
export declare class SymbolAtom implements Atom {
|
|
6147
6235
|
readonly name: string;
|
|
6148
6236
|
constructor(name: string);
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ import { ConceptMap } from '@medplum/fhirtypes';
|
|
|
14
14
|
import type { CustomTableLayout } from 'pdfmake/interfaces';
|
|
15
15
|
import { Device } from '@medplum/fhirtypes';
|
|
16
16
|
import { DiagnosticReport } from '@medplum/fhirtypes';
|
|
17
|
+
import { DocumentReference } from '@medplum/fhirtypes';
|
|
17
18
|
import { ElementDefinition } from '@medplum/fhirtypes';
|
|
18
19
|
import { ElementDefinitionBinding } from '@medplum/fhirtypes';
|
|
19
20
|
import { Encounter } from '@medplum/fhirtypes';
|
|
@@ -47,6 +48,7 @@ import { Reference } from '@medplum/fhirtypes';
|
|
|
47
48
|
import { RelatedPerson } from '@medplum/fhirtypes';
|
|
48
49
|
import { Resource } from '@medplum/fhirtypes';
|
|
49
50
|
import { ResourceType } from '@medplum/fhirtypes';
|
|
51
|
+
import { SampledData } from '@medplum/fhirtypes';
|
|
50
52
|
import { SearchParameter } from '@medplum/fhirtypes';
|
|
51
53
|
import { StructureDefinition } from '@medplum/fhirtypes';
|
|
52
54
|
import { StructureMap } from '@medplum/fhirtypes';
|
|
@@ -89,6 +91,23 @@ export declare const AccessPolicyInteraction: {
|
|
|
89
91
|
|
|
90
92
|
export declare type AccessPolicyInteraction = (typeof AccessPolicyInteraction)[keyof typeof AccessPolicyInteraction];
|
|
91
93
|
|
|
94
|
+
export declare const AckCode: {
|
|
95
|
+
/** AA - Application Accept */
|
|
96
|
+
readonly AA: "AA";
|
|
97
|
+
/** AE - Application Error */
|
|
98
|
+
readonly AE: "AE";
|
|
99
|
+
/** AR - Application Reject */
|
|
100
|
+
readonly AR: "AR";
|
|
101
|
+
/** CA - Commit Accept */
|
|
102
|
+
readonly CA: "CA";
|
|
103
|
+
/** CE - Commit Error */
|
|
104
|
+
readonly CE: "CE";
|
|
105
|
+
/** CR - Commit Reject */
|
|
106
|
+
readonly CR: "CR";
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
export declare type AckCode = keyof typeof AckCode;
|
|
110
|
+
|
|
92
111
|
/**
|
|
93
112
|
* Adds the supplied profileUrl to the resource.meta.profile if it is not already
|
|
94
113
|
* specified
|
|
@@ -632,6 +651,13 @@ export declare function createConstraintIssue(expression: string, constraint: Co
|
|
|
632
651
|
|
|
633
652
|
export declare const created: OperationOutcome;
|
|
634
653
|
|
|
654
|
+
export declare interface CreateDocumentReferenceOptions extends CreateBinaryOptions {
|
|
655
|
+
/**
|
|
656
|
+
* Optional additional fields for the DocumentReference resource.
|
|
657
|
+
*/
|
|
658
|
+
readonly additionalFields?: Omit<Partial<DocumentReference>, 'content'>;
|
|
659
|
+
}
|
|
660
|
+
|
|
635
661
|
/**
|
|
636
662
|
* Creates a serializable JSON payload for the `FHIRcast` protocol
|
|
637
663
|
*
|
|
@@ -702,6 +728,28 @@ export declare type CurrentContext<T extends FhircastAnchorResourceType | '' = F
|
|
|
702
728
|
context: FhircastEventContext<AnchorResourceOpenEvent<T>>[];
|
|
703
729
|
} : never;
|
|
704
730
|
|
|
731
|
+
export declare class DataSampler {
|
|
732
|
+
private code?;
|
|
733
|
+
private unit?;
|
|
734
|
+
private readonly sampling?;
|
|
735
|
+
private readonly dataPoints;
|
|
736
|
+
/**
|
|
737
|
+
* @param opts - Optional parameters.
|
|
738
|
+
* @param opts.code - Code for data points.
|
|
739
|
+
* @param opts.unit - Unit for data points.
|
|
740
|
+
* @param opts.sampling - Sampling information for high-frequency Observations.
|
|
741
|
+
*/
|
|
742
|
+
constructor(opts?: {
|
|
743
|
+
code?: CodeableConcept;
|
|
744
|
+
unit?: QuantityUnit;
|
|
745
|
+
sampling?: SamplingInfo;
|
|
746
|
+
});
|
|
747
|
+
addObservation(obs: Observation): void;
|
|
748
|
+
addData(...data: number[]): void;
|
|
749
|
+
private checkUnit;
|
|
750
|
+
summarize(code: CodeableConcept, fn: StatsFn): Observation;
|
|
751
|
+
}
|
|
752
|
+
|
|
705
753
|
export declare type DataTypesMap = {
|
|
706
754
|
[type: string]: InternalTypeSchema;
|
|
707
755
|
};
|
|
@@ -920,6 +968,10 @@ declare class EventTarget_2 {
|
|
|
920
968
|
}
|
|
921
969
|
export { EventTarget_2 as EventTarget }
|
|
922
970
|
|
|
971
|
+
export declare function expandSampledData(sample: SampledData): number[];
|
|
972
|
+
|
|
973
|
+
export declare function expandSampledObservation(obs: Observation): Observation[];
|
|
974
|
+
|
|
923
975
|
export declare type ExtendedElementProperties = {
|
|
924
976
|
readonly: boolean;
|
|
925
977
|
hidden: boolean;
|
|
@@ -1881,6 +1933,11 @@ export declare interface GoogleLoginRequest extends BaseLoginRequest {
|
|
|
1881
1933
|
readonly createUser?: boolean;
|
|
1882
1934
|
}
|
|
1883
1935
|
|
|
1936
|
+
export declare interface Hl7AckOptions {
|
|
1937
|
+
ackCode: AckCode;
|
|
1938
|
+
errSegment?: Hl7Segment;
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1884
1941
|
/**
|
|
1885
1942
|
* The Hl7Context class represents the parsing context for an HL7 message.
|
|
1886
1943
|
*
|
|
@@ -2033,9 +2090,10 @@ export declare class Hl7Message {
|
|
|
2033
2090
|
toString(): string;
|
|
2034
2091
|
/**
|
|
2035
2092
|
* Returns an HL7 "ACK" (acknowledgement) message for this message.
|
|
2093
|
+
* @param options - The optional options to configure the "ACK" message.
|
|
2036
2094
|
* @returns The HL7 "ACK" message.
|
|
2037
2095
|
*/
|
|
2038
|
-
buildAck(): Hl7Message;
|
|
2096
|
+
buildAck(options?: Hl7AckOptions): Hl7Message;
|
|
2039
2097
|
private buildAckMessageType;
|
|
2040
2098
|
/**
|
|
2041
2099
|
* Parses an HL7 message string into an Hl7Message object.
|
|
@@ -4145,6 +4203,15 @@ export declare class MedplumClient extends TypedEventTarget<MedplumClientEventMa
|
|
|
4145
4203
|
* @deprecated Use `createMedia` with `CreateMediaOptions` instead. To be removed in a future version.
|
|
4146
4204
|
*/
|
|
4147
4205
|
uploadMedia(contents: string | Uint8Array | File | Blob, contentType: string, filename: string | undefined, additionalFields?: Partial<Media>, options?: MedplumRequestOptions): Promise<Media>;
|
|
4206
|
+
/**
|
|
4207
|
+
* Creates a FHIR DocumentReference resource with the provided data content.
|
|
4208
|
+
*
|
|
4209
|
+
* @category Create
|
|
4210
|
+
* @param createDocumentReferenceOptions - The document reference creation options. See `CreateDocumentReferenceOptions` for full details.
|
|
4211
|
+
* @param requestOptions - Optional fetch options.
|
|
4212
|
+
* @returns The new document reference resource.
|
|
4213
|
+
*/
|
|
4214
|
+
createDocumentReference(createDocumentReferenceOptions: CreateDocumentReferenceOptions, requestOptions?: MedplumRequestOptions): Promise<DocumentReference>;
|
|
4148
4215
|
/**
|
|
4149
4216
|
* Performs Bulk Data Export operation request flow. See The FHIR "Bulk Data Export" for full details: https://build.fhir.org/ig/HL7/bulk-data/export.html#bulk-data-export
|
|
4150
4217
|
* @param exportLevel - Optional export level. Defaults to system level export. 'Group/:id' - Group of Patients, 'Patient' - All Patients.
|
|
@@ -4869,6 +4936,10 @@ export declare interface MedplumRequestOptions extends RequestInit {
|
|
|
4869
4936
|
* Optional max number of retries that should be made in the case of a failed request. Default is `2`.
|
|
4870
4937
|
*/
|
|
4871
4938
|
maxRetries?: number;
|
|
4939
|
+
/**
|
|
4940
|
+
* Optional maximum time to wait between retries, in milliseconds; defaults to `2000` (2 s).
|
|
4941
|
+
*/
|
|
4942
|
+
maxRetryTime?: number;
|
|
4872
4943
|
/**
|
|
4873
4944
|
* Optional flag to disable auto-batching for this specific request.
|
|
4874
4945
|
* Only applies when the client is configured with auto-batching enabled.
|
|
@@ -5540,6 +5611,8 @@ export declare const protectedResourceTypes: string[];
|
|
|
5540
5611
|
|
|
5541
5612
|
export declare type ProtocolsProvider = null | string | string[];
|
|
5542
5613
|
|
|
5614
|
+
export declare type QuantityUnit = Pick<Quantity, 'unit' | 'code' | 'system'>;
|
|
5615
|
+
|
|
5543
5616
|
/**
|
|
5544
5617
|
* QueryTypes defines the different ways to specify FHIR search parameters.
|
|
5545
5618
|
*
|
|
@@ -5794,6 +5867,8 @@ export declare type ResourceWithCode = Resource & Code;
|
|
|
5794
5867
|
|
|
5795
5868
|
export declare const RXNORM = "http://www.nlm.nih.gov/research/umls/rxnorm";
|
|
5796
5869
|
|
|
5870
|
+
export declare type SamplingInfo = Omit<SampledData, 'data'>;
|
|
5871
|
+
|
|
5797
5872
|
/**
|
|
5798
5873
|
* Checks that there is an access policy permitting the given resource interaction, returning the matching policy object.
|
|
5799
5874
|
* @param resource - The resource being acted upon.
|
|
@@ -5970,6 +6045,8 @@ export declare function splitN(str: string, delim: string, n: number): string[];
|
|
|
5970
6045
|
*/
|
|
5971
6046
|
export declare function splitSearchOnComma(input: string): string[];
|
|
5972
6047
|
|
|
6048
|
+
export declare type StatsFn = (data: number[]) => number | Quantity;
|
|
6049
|
+
|
|
5973
6050
|
/**
|
|
5974
6051
|
* Reads data from a Readable stream and returns a Promise that resolves with a Buffer containing all the data.
|
|
5975
6052
|
* @param stream - The Readable stream to read from.
|
|
@@ -6143,6 +6220,17 @@ export declare type SubscriptionRequest = {
|
|
|
6143
6220
|
*/
|
|
6144
6221
|
export declare function subsetResource<T extends Resource>(resource: T | undefined, properties: string[]): T | undefined;
|
|
6145
6222
|
|
|
6223
|
+
/**
|
|
6224
|
+
* Summarizes a group of Observations into a single computed summary value, with the individual values
|
|
6225
|
+
* preserved in `Observation.component.valueSampledData`.
|
|
6226
|
+
*
|
|
6227
|
+
* @param observations - The Observations to summarize.
|
|
6228
|
+
* @param summaryCode - The code for the summarized value.
|
|
6229
|
+
* @param summarizeFn - Function to summarize the data points.
|
|
6230
|
+
* @returns - The summary Observation resource.
|
|
6231
|
+
*/
|
|
6232
|
+
export declare function summarizeObservations(observations: Observation[] | Bundle<Observation>, summaryCode: CodeableConcept, summarizeFn: StatsFn): Observation;
|
|
6233
|
+
|
|
6146
6234
|
export declare class SymbolAtom implements Atom {
|
|
6147
6235
|
readonly name: string;
|
|
6148
6236
|
constructor(name: string);
|