@tsonic/nodejs 10.0.27 → 10.0.31
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/index/internal/index.d.ts +124 -62
- package/nodejs.Http/internal/index.d.ts +4 -2
- package/package.json +3 -3
|
@@ -254,8 +254,10 @@ export interface BindOptions$instance {
|
|
|
254
254
|
get address(): string | undefined;
|
|
255
255
|
set address(value: string | undefined);
|
|
256
256
|
exclusive: boolean;
|
|
257
|
-
fd: Nullable_1<System_Internal.Int32>;
|
|
258
|
-
|
|
257
|
+
get fd(): Nullable_1<System_Internal.Int32>;
|
|
258
|
+
set fd(value: Nullable_1<System_Internal.Int32> | int);
|
|
259
|
+
get port(): Nullable_1<System_Internal.Int32>;
|
|
260
|
+
set port(value: Nullable_1<System_Internal.Int32> | int);
|
|
259
261
|
}
|
|
260
262
|
|
|
261
263
|
|
|
@@ -287,9 +289,12 @@ export type BlockList = BlockList$instance;
|
|
|
287
289
|
export interface BrotliOptions$instance {
|
|
288
290
|
readonly __tsonic_type_nodejs_BrotliOptions: never;
|
|
289
291
|
|
|
290
|
-
chunkSize: Nullable_1<System_Internal.Int32>;
|
|
291
|
-
|
|
292
|
-
|
|
292
|
+
get chunkSize(): Nullable_1<System_Internal.Int32>;
|
|
293
|
+
set chunkSize(value: Nullable_1<System_Internal.Int32> | int);
|
|
294
|
+
get maxOutputLength(): Nullable_1<System_Internal.Int32>;
|
|
295
|
+
set maxOutputLength(value: Nullable_1<System_Internal.Int32> | int);
|
|
296
|
+
get quality(): Nullable_1<System_Internal.Int32>;
|
|
297
|
+
set quality(value: Nullable_1<System_Internal.Int32> | int);
|
|
293
298
|
}
|
|
294
299
|
|
|
295
300
|
|
|
@@ -448,7 +453,8 @@ export interface ChildProcess$instance extends EventEmitter {
|
|
|
448
453
|
readonly __tsonic_type_nodejs_ChildProcess: never;
|
|
449
454
|
|
|
450
455
|
connected: boolean;
|
|
451
|
-
exitCode: Nullable_1<System_Internal.Int32>;
|
|
456
|
+
get exitCode(): Nullable_1<System_Internal.Int32>;
|
|
457
|
+
set exitCode(value: Nullable_1<System_Internal.Int32> | int);
|
|
452
458
|
readonly killed: boolean;
|
|
453
459
|
readonly pid: int;
|
|
454
460
|
referenced: boolean;
|
|
@@ -518,9 +524,12 @@ export interface CommonConnectionOptions$instance {
|
|
|
518
524
|
|
|
519
525
|
get ALPNProtocols(): string[] | undefined;
|
|
520
526
|
set ALPNProtocols(value: string[] | undefined);
|
|
521
|
-
enableTrace: Nullable_1<System_Internal.Boolean>;
|
|
522
|
-
|
|
523
|
-
|
|
527
|
+
get enableTrace(): Nullable_1<System_Internal.Boolean>;
|
|
528
|
+
set enableTrace(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
529
|
+
get rejectUnauthorized(): Nullable_1<System_Internal.Boolean>;
|
|
530
|
+
set rejectUnauthorized(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
531
|
+
get requestCert(): Nullable_1<System_Internal.Boolean>;
|
|
532
|
+
set requestCert(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
524
533
|
get secureContext(): SecureContext | undefined;
|
|
525
534
|
set secureContext(value: SecureContext | undefined);
|
|
526
535
|
}
|
|
@@ -546,10 +555,12 @@ export interface ConnectionOptions$instance extends CommonConnectionOptions {
|
|
|
546
555
|
set key(value: unknown | undefined);
|
|
547
556
|
get passphrase(): string | undefined;
|
|
548
557
|
set passphrase(value: string | undefined);
|
|
549
|
-
port: Nullable_1<System_Internal.Int32>;
|
|
558
|
+
get port(): Nullable_1<System_Internal.Int32>;
|
|
559
|
+
set port(value: Nullable_1<System_Internal.Int32> | int);
|
|
550
560
|
get servername(): string | undefined;
|
|
551
561
|
set servername(value: string | undefined);
|
|
552
|
-
timeout: Nullable_1<System_Internal.Int32>;
|
|
562
|
+
get timeout(): Nullable_1<System_Internal.Int32>;
|
|
563
|
+
set timeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
553
564
|
}
|
|
554
565
|
|
|
555
566
|
|
|
@@ -986,7 +997,8 @@ export interface ExecOptions$instance {
|
|
|
986
997
|
set encoding(value: string | undefined);
|
|
987
998
|
get env(): unknown | undefined;
|
|
988
999
|
set env(value: unknown | undefined);
|
|
989
|
-
gid: Nullable_1<System_Internal.Int32>;
|
|
1000
|
+
get gid(): Nullable_1<System_Internal.Int32>;
|
|
1001
|
+
set gid(value: Nullable_1<System_Internal.Int32> | int);
|
|
990
1002
|
get input(): string | undefined;
|
|
991
1003
|
set input(value: string | undefined);
|
|
992
1004
|
get killSignal(): string | undefined;
|
|
@@ -997,7 +1009,8 @@ export interface ExecOptions$instance {
|
|
|
997
1009
|
get stdio(): string | undefined;
|
|
998
1010
|
set stdio(value: string | undefined);
|
|
999
1011
|
timeout: int;
|
|
1000
|
-
uid: Nullable_1<System_Internal.Int32>;
|
|
1012
|
+
get uid(): Nullable_1<System_Internal.Int32>;
|
|
1013
|
+
set uid(value: Nullable_1<System_Internal.Int32> | int);
|
|
1001
1014
|
windowsHide: boolean;
|
|
1002
1015
|
windowsVerbatimArguments: boolean;
|
|
1003
1016
|
}
|
|
@@ -1132,19 +1145,24 @@ export type Interface = Interface$instance;
|
|
|
1132
1145
|
export interface InterfaceOptions$instance {
|
|
1133
1146
|
readonly __tsonic_type_nodejs_InterfaceOptions: never;
|
|
1134
1147
|
|
|
1135
|
-
escapeCodeTimeout: Nullable_1<System_Internal.Int32>;
|
|
1148
|
+
get escapeCodeTimeout(): Nullable_1<System_Internal.Int32>;
|
|
1149
|
+
set escapeCodeTimeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
1136
1150
|
get history(): string[] | undefined;
|
|
1137
1151
|
set history(value: string[] | undefined);
|
|
1138
|
-
historySize: Nullable_1<System_Internal.Int32>;
|
|
1152
|
+
get historySize(): Nullable_1<System_Internal.Int32>;
|
|
1153
|
+
set historySize(value: Nullable_1<System_Internal.Int32> | int);
|
|
1139
1154
|
get input(): Readable | undefined;
|
|
1140
1155
|
set input(value: Readable | undefined);
|
|
1141
1156
|
get output(): Writable | undefined;
|
|
1142
1157
|
set output(value: Writable | undefined);
|
|
1143
1158
|
get prompt(): string | undefined;
|
|
1144
1159
|
set prompt(value: string | undefined);
|
|
1145
|
-
removeHistoryDuplicates: Nullable_1<System_Internal.Boolean>;
|
|
1146
|
-
|
|
1147
|
-
|
|
1160
|
+
get removeHistoryDuplicates(): Nullable_1<System_Internal.Boolean>;
|
|
1161
|
+
set removeHistoryDuplicates(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1162
|
+
get tabSize(): Nullable_1<System_Internal.Int32>;
|
|
1163
|
+
set tabSize(value: Nullable_1<System_Internal.Int32> | int);
|
|
1164
|
+
get terminal(): Nullable_1<System_Internal.Boolean>;
|
|
1165
|
+
set terminal(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1148
1166
|
}
|
|
1149
1167
|
|
|
1150
1168
|
|
|
@@ -1191,13 +1209,16 @@ export type KeyObject = KeyObject$instance;
|
|
|
1191
1209
|
export interface ListenOptions$instance {
|
|
1192
1210
|
readonly __tsonic_type_nodejs_ListenOptions: never;
|
|
1193
1211
|
|
|
1194
|
-
backlog: Nullable_1<System_Internal.Int32>;
|
|
1212
|
+
get backlog(): Nullable_1<System_Internal.Int32>;
|
|
1213
|
+
set backlog(value: Nullable_1<System_Internal.Int32> | int);
|
|
1195
1214
|
get host(): string | undefined;
|
|
1196
1215
|
set host(value: string | undefined);
|
|
1197
|
-
ipv6Only: Nullable_1<System_Internal.Boolean>;
|
|
1216
|
+
get ipv6Only(): Nullable_1<System_Internal.Boolean>;
|
|
1217
|
+
set ipv6Only(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1198
1218
|
get path(): string | undefined;
|
|
1199
1219
|
set path(value: string | undefined);
|
|
1200
|
-
port: Nullable_1<System_Internal.Int32>;
|
|
1220
|
+
get port(): Nullable_1<System_Internal.Int32>;
|
|
1221
|
+
set port(value: Nullable_1<System_Internal.Int32> | int);
|
|
1201
1222
|
}
|
|
1202
1223
|
|
|
1203
1224
|
|
|
@@ -1226,13 +1247,16 @@ export type LookupAddress = LookupAddress$instance;
|
|
|
1226
1247
|
export interface LookupOptions$instance {
|
|
1227
1248
|
readonly __tsonic_type_nodejs_LookupOptions: never;
|
|
1228
1249
|
|
|
1229
|
-
all: Nullable_1<System_Internal.Boolean>;
|
|
1250
|
+
get all(): Nullable_1<System_Internal.Boolean>;
|
|
1251
|
+
set all(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1230
1252
|
get family(): unknown | undefined;
|
|
1231
1253
|
set family(value: unknown | undefined);
|
|
1232
|
-
hints: Nullable_1<System_Internal.Int32>;
|
|
1254
|
+
get hints(): Nullable_1<System_Internal.Int32>;
|
|
1255
|
+
set hints(value: Nullable_1<System_Internal.Int32> | int);
|
|
1233
1256
|
get order(): string | undefined;
|
|
1234
1257
|
set order(value: string | undefined);
|
|
1235
|
-
verbatim: Nullable_1<System_Internal.Boolean>;
|
|
1258
|
+
get verbatim(): Nullable_1<System_Internal.Boolean>;
|
|
1259
|
+
set verbatim(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1236
1260
|
}
|
|
1237
1261
|
|
|
1238
1262
|
|
|
@@ -1263,7 +1287,8 @@ export interface MarkOptions$instance {
|
|
|
1263
1287
|
|
|
1264
1288
|
get detail(): unknown | undefined;
|
|
1265
1289
|
set detail(value: unknown | undefined);
|
|
1266
|
-
startTime: Nullable_1<System_Internal.Double>;
|
|
1290
|
+
get startTime(): Nullable_1<System_Internal.Double>;
|
|
1291
|
+
set startTime(value: Nullable_1<System_Internal.Double> | double);
|
|
1267
1292
|
}
|
|
1268
1293
|
|
|
1269
1294
|
|
|
@@ -1279,10 +1304,12 @@ export interface MeasureOptions$instance {
|
|
|
1279
1304
|
|
|
1280
1305
|
get detail(): unknown | undefined;
|
|
1281
1306
|
set detail(value: unknown | undefined);
|
|
1282
|
-
end: Nullable_1<System_Internal.Double>;
|
|
1307
|
+
get end(): Nullable_1<System_Internal.Double>;
|
|
1308
|
+
set end(value: Nullable_1<System_Internal.Double> | double);
|
|
1283
1309
|
get endMark(): string | undefined;
|
|
1284
1310
|
set endMark(value: string | undefined);
|
|
1285
|
-
start: Nullable_1<System_Internal.Double>;
|
|
1311
|
+
get start(): Nullable_1<System_Internal.Double>;
|
|
1312
|
+
set start(value: Nullable_1<System_Internal.Double> | double);
|
|
1286
1313
|
get startMark(): string | undefined;
|
|
1287
1314
|
set startMark(value: string | undefined);
|
|
1288
1315
|
}
|
|
@@ -1729,9 +1756,12 @@ export type Resolver = Resolver$instance;
|
|
|
1729
1756
|
export interface ResolverOptions$instance {
|
|
1730
1757
|
readonly __tsonic_type_nodejs_ResolverOptions: never;
|
|
1731
1758
|
|
|
1732
|
-
maxTimeout: Nullable_1<System_Internal.Int32>;
|
|
1733
|
-
|
|
1734
|
-
|
|
1759
|
+
get maxTimeout(): Nullable_1<System_Internal.Int32>;
|
|
1760
|
+
set maxTimeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
1761
|
+
get timeout(): Nullable_1<System_Internal.Int32>;
|
|
1762
|
+
set timeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
1763
|
+
get tries(): Nullable_1<System_Internal.Int32>;
|
|
1764
|
+
set tries(value: Nullable_1<System_Internal.Int32> | int);
|
|
1735
1765
|
}
|
|
1736
1766
|
|
|
1737
1767
|
|
|
@@ -1842,8 +1872,10 @@ export type Server = Server$instance;
|
|
|
1842
1872
|
export interface ServerOpts$instance {
|
|
1843
1873
|
readonly __tsonic_type_nodejs_ServerOpts: never;
|
|
1844
1874
|
|
|
1845
|
-
allowHalfOpen: Nullable_1<System_Internal.Boolean>;
|
|
1846
|
-
|
|
1875
|
+
get allowHalfOpen(): Nullable_1<System_Internal.Boolean>;
|
|
1876
|
+
set allowHalfOpen(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1877
|
+
get pauseOnConnect(): Nullable_1<System_Internal.Boolean>;
|
|
1878
|
+
set pauseOnConnect(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1847
1879
|
}
|
|
1848
1880
|
|
|
1849
1881
|
|
|
@@ -1905,13 +1937,15 @@ export interface Socket$instance extends Stream {
|
|
|
1905
1937
|
set localAddress(value: string | undefined);
|
|
1906
1938
|
get localFamily(): string | undefined;
|
|
1907
1939
|
set localFamily(value: string | undefined);
|
|
1908
|
-
localPort: Nullable_1<System_Internal.Int32>;
|
|
1940
|
+
get localPort(): Nullable_1<System_Internal.Int32>;
|
|
1941
|
+
set localPort(value: Nullable_1<System_Internal.Int32> | int);
|
|
1909
1942
|
readonly readyState: string;
|
|
1910
1943
|
get remoteAddress(): string | undefined;
|
|
1911
1944
|
set remoteAddress(value: string | undefined);
|
|
1912
1945
|
get remoteFamily(): string | undefined;
|
|
1913
1946
|
set remoteFamily(value: string | undefined);
|
|
1914
|
-
remotePort: Nullable_1<System_Internal.Int32>;
|
|
1947
|
+
get remotePort(): Nullable_1<System_Internal.Int32>;
|
|
1948
|
+
set remotePort(value: Nullable_1<System_Internal.Int32> | int);
|
|
1915
1949
|
address(): unknown;
|
|
1916
1950
|
connect(port: int, host?: string, connectionListener?: Action): Socket;
|
|
1917
1951
|
connect(options: TcpSocketConnectOpts, connectionListener?: Action): Socket;
|
|
@@ -1949,7 +1983,8 @@ export interface SocketAddress$instance {
|
|
|
1949
1983
|
|
|
1950
1984
|
address: string;
|
|
1951
1985
|
family: string;
|
|
1952
|
-
flowlabel: Nullable_1<System_Internal.Int32>;
|
|
1986
|
+
get flowlabel(): Nullable_1<System_Internal.Int32>;
|
|
1987
|
+
set flowlabel(value: Nullable_1<System_Internal.Int32> | int);
|
|
1953
1988
|
port: int;
|
|
1954
1989
|
}
|
|
1955
1990
|
|
|
@@ -1968,8 +2003,10 @@ export interface SocketAddressInitOptions$instance {
|
|
|
1968
2003
|
set address(value: string | undefined);
|
|
1969
2004
|
get family(): string | undefined;
|
|
1970
2005
|
set family(value: string | undefined);
|
|
1971
|
-
flowlabel: Nullable_1<System_Internal.Int32>;
|
|
1972
|
-
|
|
2006
|
+
get flowlabel(): Nullable_1<System_Internal.Int32>;
|
|
2007
|
+
set flowlabel(value: Nullable_1<System_Internal.Int32> | int);
|
|
2008
|
+
get port(): Nullable_1<System_Internal.Int32>;
|
|
2009
|
+
set port(value: Nullable_1<System_Internal.Int32> | int);
|
|
1973
2010
|
}
|
|
1974
2011
|
|
|
1975
2012
|
|
|
@@ -1983,10 +2020,14 @@ export type SocketAddressInitOptions = SocketAddressInitOptions$instance;
|
|
|
1983
2020
|
export interface SocketConstructorOpts$instance {
|
|
1984
2021
|
readonly __tsonic_type_nodejs_SocketConstructorOpts: never;
|
|
1985
2022
|
|
|
1986
|
-
allowHalfOpen: Nullable_1<System_Internal.Boolean>;
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
2023
|
+
get allowHalfOpen(): Nullable_1<System_Internal.Boolean>;
|
|
2024
|
+
set allowHalfOpen(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2025
|
+
get fd(): Nullable_1<System_Internal.Int32>;
|
|
2026
|
+
set fd(value: Nullable_1<System_Internal.Int32> | int);
|
|
2027
|
+
get readable(): Nullable_1<System_Internal.Boolean>;
|
|
2028
|
+
set readable(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2029
|
+
get writable(): Nullable_1<System_Internal.Boolean>;
|
|
2030
|
+
set writable(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1990
2031
|
}
|
|
1991
2032
|
|
|
1992
2033
|
|
|
@@ -2001,10 +2042,12 @@ export interface SocketOptions$instance {
|
|
|
2001
2042
|
readonly __tsonic_type_nodejs_SocketOptions: never;
|
|
2002
2043
|
|
|
2003
2044
|
ipv6Only: boolean;
|
|
2004
|
-
recvBufferSize: Nullable_1<System_Internal.Int32>;
|
|
2045
|
+
get recvBufferSize(): Nullable_1<System_Internal.Int32>;
|
|
2046
|
+
set recvBufferSize(value: Nullable_1<System_Internal.Int32> | int);
|
|
2005
2047
|
reuseAddr: boolean;
|
|
2006
2048
|
reusePort: boolean;
|
|
2007
|
-
sendBufferSize: Nullable_1<System_Internal.Int32>;
|
|
2049
|
+
get sendBufferSize(): Nullable_1<System_Internal.Int32>;
|
|
2050
|
+
set sendBufferSize(value: Nullable_1<System_Internal.Int32> | int);
|
|
2008
2051
|
type: string;
|
|
2009
2052
|
}
|
|
2010
2053
|
|
|
@@ -2025,7 +2068,8 @@ export interface SpawnSyncReturns_1$instance<T> {
|
|
|
2025
2068
|
pid: int;
|
|
2026
2069
|
get signal(): string | undefined;
|
|
2027
2070
|
set signal(value: string | undefined);
|
|
2028
|
-
status: Nullable_1<System_Internal.Int32>;
|
|
2071
|
+
get status(): Nullable_1<System_Internal.Int32>;
|
|
2072
|
+
set status(value: Nullable_1<System_Internal.Int32> | int);
|
|
2029
2073
|
stderr: T;
|
|
2030
2074
|
stdout: T;
|
|
2031
2075
|
}
|
|
@@ -2131,16 +2175,22 @@ export type StringDecoder = StringDecoder$instance;
|
|
|
2131
2175
|
export interface TcpSocketConnectOpts$instance {
|
|
2132
2176
|
readonly __tsonic_type_nodejs_TcpSocketConnectOpts: never;
|
|
2133
2177
|
|
|
2134
|
-
family: Nullable_1<System_Internal.Int32>;
|
|
2135
|
-
|
|
2178
|
+
get family(): Nullable_1<System_Internal.Int32>;
|
|
2179
|
+
set family(value: Nullable_1<System_Internal.Int32> | int);
|
|
2180
|
+
get hints(): Nullable_1<System_Internal.Int32>;
|
|
2181
|
+
set hints(value: Nullable_1<System_Internal.Int32> | int);
|
|
2136
2182
|
get host(): string | undefined;
|
|
2137
2183
|
set host(value: string | undefined);
|
|
2138
|
-
keepAlive: Nullable_1<System_Internal.Boolean>;
|
|
2139
|
-
|
|
2184
|
+
get keepAlive(): Nullable_1<System_Internal.Boolean>;
|
|
2185
|
+
set keepAlive(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2186
|
+
get keepAliveInitialDelay(): Nullable_1<System_Internal.Int32>;
|
|
2187
|
+
set keepAliveInitialDelay(value: Nullable_1<System_Internal.Int32> | int);
|
|
2140
2188
|
get localAddress(): string | undefined;
|
|
2141
2189
|
set localAddress(value: string | undefined);
|
|
2142
|
-
localPort: Nullable_1<System_Internal.Int32>;
|
|
2143
|
-
|
|
2190
|
+
get localPort(): Nullable_1<System_Internal.Int32>;
|
|
2191
|
+
set localPort(value: Nullable_1<System_Internal.Int32> | int);
|
|
2192
|
+
get noDelay(): Nullable_1<System_Internal.Boolean>;
|
|
2193
|
+
set noDelay(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2144
2194
|
port: int;
|
|
2145
2195
|
}
|
|
2146
2196
|
|
|
@@ -2243,18 +2293,22 @@ export type TLSCertificateInfo = TLSCertificateInfo$instance;
|
|
|
2243
2293
|
export interface TlsOptions$instance extends CommonConnectionOptions {
|
|
2244
2294
|
readonly __tsonic_type_nodejs_TlsOptions: never;
|
|
2245
2295
|
|
|
2246
|
-
allowHalfOpen: Nullable_1<System_Internal.Boolean>;
|
|
2296
|
+
get allowHalfOpen(): Nullable_1<System_Internal.Boolean>;
|
|
2297
|
+
set allowHalfOpen(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2247
2298
|
get ca(): unknown | undefined;
|
|
2248
2299
|
set ca(value: unknown | undefined);
|
|
2249
2300
|
get cert(): unknown | undefined;
|
|
2250
2301
|
set cert(value: unknown | undefined);
|
|
2251
|
-
handshakeTimeout: Nullable_1<System_Internal.Int32>;
|
|
2302
|
+
get handshakeTimeout(): Nullable_1<System_Internal.Int32>;
|
|
2303
|
+
set handshakeTimeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
2252
2304
|
get key(): unknown | undefined;
|
|
2253
2305
|
set key(value: unknown | undefined);
|
|
2254
2306
|
get passphrase(): string | undefined;
|
|
2255
2307
|
set passphrase(value: string | undefined);
|
|
2256
|
-
pauseOnConnect: Nullable_1<System_Internal.Boolean>;
|
|
2257
|
-
|
|
2308
|
+
get pauseOnConnect(): Nullable_1<System_Internal.Boolean>;
|
|
2309
|
+
set pauseOnConnect(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2310
|
+
get sessionTimeout(): Nullable_1<System_Internal.Int32>;
|
|
2311
|
+
set sessionTimeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
2258
2312
|
}
|
|
2259
2313
|
|
|
2260
2314
|
|
|
@@ -2329,7 +2383,8 @@ export interface TLSSocketOptions$instance extends CommonConnectionOptions {
|
|
|
2329
2383
|
set ca(value: unknown | undefined);
|
|
2330
2384
|
get cert(): unknown | undefined;
|
|
2331
2385
|
set cert(value: unknown | undefined);
|
|
2332
|
-
isServer: Nullable_1<System_Internal.Boolean>;
|
|
2386
|
+
get isServer(): Nullable_1<System_Internal.Boolean>;
|
|
2387
|
+
set isServer(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2333
2388
|
get key(): unknown | undefined;
|
|
2334
2389
|
set key(value: unknown | undefined);
|
|
2335
2390
|
get passphrase(): string | undefined;
|
|
@@ -2530,12 +2585,18 @@ export type X509CertificateInfo = X509CertificateInfo$instance;
|
|
|
2530
2585
|
export interface ZlibOptions$instance {
|
|
2531
2586
|
readonly __tsonic_type_nodejs_ZlibOptions: never;
|
|
2532
2587
|
|
|
2533
|
-
chunkSize: Nullable_1<System_Internal.Int32>;
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2588
|
+
get chunkSize(): Nullable_1<System_Internal.Int32>;
|
|
2589
|
+
set chunkSize(value: Nullable_1<System_Internal.Int32> | int);
|
|
2590
|
+
get level(): Nullable_1<System_Internal.Int32>;
|
|
2591
|
+
set level(value: Nullable_1<System_Internal.Int32> | int);
|
|
2592
|
+
get maxOutputLength(): Nullable_1<System_Internal.Int32>;
|
|
2593
|
+
set maxOutputLength(value: Nullable_1<System_Internal.Int32> | int);
|
|
2594
|
+
get memLevel(): Nullable_1<System_Internal.Int32>;
|
|
2595
|
+
set memLevel(value: Nullable_1<System_Internal.Int32> | int);
|
|
2596
|
+
get strategy(): Nullable_1<System_Internal.Int32>;
|
|
2597
|
+
set strategy(value: Nullable_1<System_Internal.Int32> | int);
|
|
2598
|
+
get windowBits(): Nullable_1<System_Internal.Int32>;
|
|
2599
|
+
set windowBits(value: Nullable_1<System_Internal.Int32> | int);
|
|
2539
2600
|
}
|
|
2540
2601
|
|
|
2541
2602
|
|
|
@@ -2949,7 +3010,8 @@ export abstract class process$instance {
|
|
|
2949
3010
|
static argv0: string;
|
|
2950
3011
|
static readonly env: ProcessEnv;
|
|
2951
3012
|
static readonly execPath: string;
|
|
2952
|
-
static exitCode: Nullable_1<System_Internal.Int32>;
|
|
3013
|
+
static get exitCode(): Nullable_1<System_Internal.Int32>;
|
|
3014
|
+
static set exitCode(value: Nullable_1<System_Internal.Int32> | int);
|
|
2953
3015
|
static readonly pid: int;
|
|
2954
3016
|
static readonly ppid: int;
|
|
2955
3017
|
static readonly platform: string;
|
|
@@ -99,7 +99,8 @@ export interface RequestOptions$instance {
|
|
|
99
99
|
set path(value: string | undefined);
|
|
100
100
|
port: int;
|
|
101
101
|
protocol: string;
|
|
102
|
-
timeout: Nullable_1<System_Internal.Int32>;
|
|
102
|
+
get timeout(): Nullable_1<System_Internal.Int32>;
|
|
103
|
+
set timeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
103
104
|
}
|
|
104
105
|
|
|
105
106
|
|
|
@@ -178,7 +179,8 @@ export const TypeError: {
|
|
|
178
179
|
export type TypeError = TypeError$instance;
|
|
179
180
|
|
|
180
181
|
export abstract class http$instance {
|
|
181
|
-
static globalAgent_maxSockets: Nullable_1<System_Internal.Int32>;
|
|
182
|
+
static get globalAgent_maxSockets(): Nullable_1<System_Internal.Int32>;
|
|
183
|
+
static set globalAgent_maxSockets(value: Nullable_1<System_Internal.Int32> | int);
|
|
182
184
|
static globalAgent_maxFreeSockets: int;
|
|
183
185
|
static globalAgent_timeout: int;
|
|
184
186
|
static maxHeaderSize: int;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/nodejs",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.31",
|
|
4
4
|
"description": "TypeScript type definitions for Node.js CLR library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"url": "https://github.com/tsoniclang/nodejs.git"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@tsonic/dotnet": "10.0.
|
|
23
|
-
"@tsonic/core": "10.0.
|
|
22
|
+
"@tsonic/dotnet": "10.0.31",
|
|
23
|
+
"@tsonic/core": "10.0.31"
|
|
24
24
|
}
|
|
25
25
|
}
|