@tsonic/nodejs 10.0.6 → 10.0.7
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.
|
@@ -303,7 +303,6 @@ export type BrotliOptions = BrotliOptions$instance;
|
|
|
303
303
|
export interface Buffer$instance {
|
|
304
304
|
readonly __tsonic_type_nodejs_Buffer: never;
|
|
305
305
|
|
|
306
|
-
[index: number]: byte;
|
|
307
306
|
readonly length: int;
|
|
308
307
|
compare(target: Buffer, targetStart?: Nullable_1<System_Internal.Int32>, targetEnd?: Nullable_1<System_Internal.Int32>, sourceStart?: Nullable_1<System_Internal.Int32>, sourceEnd?: Nullable_1<System_Internal.Int32>): int;
|
|
309
308
|
copy(target: Buffer, targetStart?: int, sourceStart?: Nullable_1<System_Internal.Int32>, sourceEnd?: Nullable_1<System_Internal.Int32>): int;
|
|
@@ -404,7 +403,7 @@ export const Buffer: {
|
|
|
404
403
|
};
|
|
405
404
|
|
|
406
405
|
|
|
407
|
-
export type Buffer = Buffer$instance;
|
|
406
|
+
export type Buffer = Buffer$instance & { [index: number]: byte; };
|
|
408
407
|
|
|
409
408
|
export interface BufferConstants$instance {
|
|
410
409
|
readonly __tsonic_type_nodejs_BufferConstants: never;
|
|
@@ -1543,7 +1542,6 @@ export interface ProcessEnv$instance {
|
|
|
1543
1542
|
|
|
1544
1543
|
readonly Count: int;
|
|
1545
1544
|
readonly IsReadOnly: boolean;
|
|
1546
|
-
[key: string]: string | undefined;
|
|
1547
1545
|
readonly Keys: ICollection_1<System_Internal.String>;
|
|
1548
1546
|
readonly Values: ICollection_1<string | undefined>;
|
|
1549
1547
|
Add(key: string, value: string): void;
|
|
@@ -1564,7 +1562,7 @@ export const ProcessEnv: {
|
|
|
1564
1562
|
};
|
|
1565
1563
|
|
|
1566
1564
|
|
|
1567
|
-
export type ProcessEnv = ProcessEnv$instance;
|
|
1565
|
+
export type ProcessEnv = ProcessEnv$instance & { [key: string]: string | undefined; };
|
|
1568
1566
|
|
|
1569
1567
|
export interface ProcessVersions$instance {
|
|
1570
1568
|
readonly __tsonic_type_nodejs_ProcessVersions: never;
|