-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.d.ts
262 lines (218 loc) · 4.35 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
import { Logger } from 'winston';
import { Socket } from 'net';
import AsyncEventEmitter from 'async-eventemitter';
declare class Tag {
/**
* Creates an instance of Tag.
*/
constructor(tag: string);
/**
* Gets the segment.
*/
getSegment(): string;
/**
* Gets the segment number.
*/
getSegmentNumber(): number;
/**
* Gets the field.
*/
getField(): number;
/**
* Gets the component.
*/
getComponent(): number;
/**
* Gets the sub-component.
*/
getSubComponent(): number;
/**
* Gets the tag description.
*/
toString(): string;
}
declare class Hl7 {
/**
* Creates an instance of Hl7.
*/
constructor();
/**
* Parses an HL7 message string.
*/
static parse(hl7: string): Hl7;
/**
* Checks whether the segment ID is a header segment.
*/
static isHeaderSegment(segmentId: string): boolean;
/**
* Gets a tag value.
*/
get(tag: Tag, defaultValue: string): string;
/**
* Sets a tag value.
*/
set(tag: Tag, value: string): void;
/**
* Gets segments.
*/
getSegments(segmentId?: string): Array<Tag>;
/**
* Counts segments.
*/
countSegments(segmentId?: string): number;
/**
* Builds the HL7 message.
*/
toString(segmentSeparator?: string): string;
}
declare class Hl7Message extends AsyncEventEmitter<AsyncEventEmitter.EventMap> {
/**
* Creates an instance of Hl7Message.
*/
constructor(hl7?: Hl7 | string);
/**
* Creates an acknowledge message from a message.
*/
static createAcknowledgeMessage(
message: Hl7Message,
opts?: {
sendingApplication?: string;
sendingFacility?: string;
error?: string;
}
): Hl7Message;
/**
* Gets a tag value.
*/
get(tag: Tag, defaultValue: string): string;
/**
* Sets a tag value.
*/
set(tag: Tag, value: string): void;
/**
* Gets message control ID.
*/
getMessageControlId(): string;
/**
* Gets the HL7 message.
*/
toString(segmentSeparator?: string): string;
}
declare class Network extends AsyncEventEmitter<AsyncEventEmitter.EventMap> {
/**
* Creates an instance of Network.
*/
constructor(
socket: Socket,
opts?: {
connectTimeout?: number;
logMessages?: boolean;
}
);
/**
* Sends HL7 messages.
*/
sendMessages(messages: Array<Hl7Message> | Hl7Message): void;
}
declare class Statistics {
/**
* Creates an instance of Statistics.
*/
constructor();
/**
* Gets the received bytes.
*/
getBytesReceived(): number;
/**
* Gets the sent bytes.
*/
getBytesSent(): number;
/**
* Adds bytes to the received bytes.
*/
addBytesReceived(bytes: number): void;
/**
* Adds bytes to the sent bytes.
*/
addBytesSent(bytes: number): void;
/**
* Adds values from other statistics.
*/
addFromOtherStatistics(statistics: Statistics): void;
/**
* Resets received and sent bytes.
*/
reset(): void;
/**
* Gets the statistics description.
*/
toString(): string;
}
declare class Hl7MessageHandler extends Network {
/**
* Message received.
*/
onMessage(message: Hl7Message, callback: (message: Hl7Message) => void): void;
}
declare class Server extends AsyncEventEmitter<AsyncEventEmitter.EventMap> {
/**
* Creates an instance of Server.
*/
constructor(handlerClass: typeof Hl7MessageHandler);
/**
* Listens for incoming connections.
*/
listen(
port: number,
opts?: {
connectTimeout?: number;
logMessages?: boolean;
}
): void;
/**
* Gets network statistics.
*/
getStatistics(): Statistics;
/**
* Closes the server.
*/
close(): void;
}
declare class Client extends AsyncEventEmitter<AsyncEventEmitter.EventMap> {
/**
* Creates an instance of Client.
*/
constructor();
/**
* Adds an HL7 message.
*/
addMessage(message: Hl7Message): void;
/**
* Clears all HL7 messages.
*/
clearMessages(): void;
/**
* Sends messages to the remote host.
*/
send(
host: string,
port: number,
opts?: {
connectTimeout?: number;
logMessages?: boolean;
}
): void;
/**
* Gets network statistics.
*/
getStatistics(): Statistics;
}
/**
* Logger.
*/
declare const log: Logger;
/**
* Version.
*/
declare const version: string;
export { Tag, Hl7, Hl7Message, Client, Server, Hl7MessageHandler, Statistics, log, version };