@tsonic/dotnet 10.0.4 → 10.0.9
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/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +10 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +42 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +60 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +12 -0
- package/Microsoft.Win32/internal/index.d.ts +5 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +68 -0
- package/System/internal/index.d.ts +1438 -161
- package/System.Buffers/internal/index.d.ts +42 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +7 -0
- package/System.Collections/internal/index.d.ts +109 -27
- package/System.Collections.Concurrent/internal/index.d.ts +52 -3
- package/System.Collections.Frozen/internal/index.d.ts +37 -0
- package/System.Collections.Generic/internal/index.d.ts +422 -33
- package/System.Collections.Immutable/internal/index.d.ts +193 -2
- package/System.Collections.ObjectModel/internal/index.d.ts +98 -6
- package/System.Collections.Specialized/internal/index.d.ts +72 -10
- package/System.ComponentModel/internal/index.d.ts +392 -23
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +79 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +120 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +40 -0
- package/System.Data/internal/index.d.ts +273 -20
- package/System.Data.Common/internal/index.d.ts +146 -32
- package/System.Data.SqlTypes/internal/index.d.ts +147 -48
- package/System.Diagnostics/internal/index.d.ts +213 -13
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +28 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +37 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +30 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +56 -6
- package/System.Drawing/internal/index.d.ts +38 -0
- package/System.Dynamic/internal/index.d.ts +50 -5
- package/System.Formats.Asn1/internal/index.d.ts +19 -3
- package/System.Formats.Tar/internal/index.d.ts +26 -6
- package/System.Globalization/internal/index.d.ts +116 -20
- package/System.IO/internal/index.d.ts +141 -18
- package/System.IO.Compression/internal/index.d.ts +46 -9
- package/System.IO.Enumeration/internal/index.d.ts +13 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +18 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +13 -0
- package/System.IO.Pipelines/internal/index.d.ts +22 -2
- package/System.IO.Pipes/internal/index.d.ts +31 -0
- package/System.Linq/internal/index.d.ts +55 -7
- package/System.Linq.Expressions/internal/index.d.ts +103 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +202 -21
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +103 -0
- package/System.Net.Http.Headers/internal/index.d.ts +151 -60
- package/System.Net.Http.Json/internal/index.d.ts +4 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +88 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +89 -0
- package/System.Net.Quic/internal/index.d.ts +31 -6
- package/System.Net.Security/internal/index.d.ts +40 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +59 -6
- package/System.Net.WebSockets/internal/index.d.ts +32 -3
- package/System.Numerics/internal/index.d.ts +173 -7
- package/System.Reflection/internal/index.d.ts +202 -30
- package/System.Reflection.Emit/internal/index.d.ts +80 -9
- package/System.Reflection.Metadata/internal/index.d.ts +650 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +80 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +39 -3
- package/System.Resources/internal/index.d.ts +35 -1
- package/System.Runtime/internal/index.d.ts +18 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +330 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +268 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +82 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +59 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +82 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +56 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +9 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +111 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +5 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +8 -0
- package/System.Runtime.Versioning/internal/index.d.ts +28 -0
- package/System.Security/internal/index.d.ts +46 -6
- package/System.Security.AccessControl/internal/index.d.ts +116 -2
- package/System.Security.Authentication/internal/index.d.ts +8 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +16 -5
- package/System.Security.Claims/internal/index.d.ts +12 -6
- package/System.Security.Cryptography/internal/index.d.ts +568 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +114 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +7 -0
- package/System.Security.Principal/internal/index.d.ts +42 -5
- package/System.Text/internal/index.d.ts +108 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +53 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +21 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +64 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +27 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +75 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +186 -24
- package/System.Threading.Channels/internal/index.d.ts +20 -0
- package/System.Threading.Tasks/internal/index.d.ts +48 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +99 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +6 -0
- package/System.Timers/internal/index.d.ts +11 -3
- package/System.Transactions/internal/index.d.ts +76 -15
- package/System.Web/internal/index.d.ts +4 -0
- package/System.Windows.Input/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +245 -20
- package/System.Xml.Linq/internal/index.d.ts +73 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +171 -0
- package/System.Xml.Serialization/internal/index.d.ts +141 -0
- package/System.Xml.XPath/internal/index.d.ts +27 -8
- package/System.Xml.Xsl/internal/index.d.ts +27 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +112 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -31,6 +31,8 @@ export type SpanAction_2<T, TArg> = (span: Span_1<T>, arg: TArg) => void;
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
export interface IBufferWriter_1$instance<T> {
|
|
34
|
+
readonly __tsonic_iface_System_Buffers_IBufferWriter_1: never;
|
|
35
|
+
|
|
34
36
|
Advance(count: int): void;
|
|
35
37
|
GetMemory(sizeHint?: int): Memory_1<T>;
|
|
36
38
|
GetSpan(sizeHint?: int): Span_1<T>;
|
|
@@ -40,6 +42,8 @@ export interface IBufferWriter_1$instance<T> {
|
|
|
40
42
|
export type IBufferWriter_1<T> = IBufferWriter_1$instance<T>;
|
|
41
43
|
|
|
42
44
|
export interface IMemoryOwner_1$instance<T> extends IDisposable {
|
|
45
|
+
readonly __tsonic_iface_System_Buffers_IMemoryOwner_1: never;
|
|
46
|
+
|
|
43
47
|
readonly Memory: Memory_1<T>;
|
|
44
48
|
Dispose(): void;
|
|
45
49
|
}
|
|
@@ -50,6 +54,8 @@ export interface IMemoryOwner_1$instance<T> extends System_Internal.IDisposable$
|
|
|
50
54
|
export type IMemoryOwner_1<T> = IMemoryOwner_1$instance<T>;
|
|
51
55
|
|
|
52
56
|
export interface IPinnable$instance {
|
|
57
|
+
readonly __tsonic_iface_System_Buffers_IPinnable: never;
|
|
58
|
+
|
|
53
59
|
Pin(elementIndex: int): MemoryHandle;
|
|
54
60
|
Unpin(): void;
|
|
55
61
|
}
|
|
@@ -57,7 +63,11 @@ export interface IPinnable$instance {
|
|
|
57
63
|
|
|
58
64
|
export type IPinnable = IPinnable$instance;
|
|
59
65
|
|
|
60
|
-
export interface MemoryHandle$instance {
|
|
66
|
+
export interface MemoryHandle$instance extends System_Internal.IDisposable$instance {
|
|
67
|
+
readonly __tsonic_type_System_Buffers_MemoryHandle: never;
|
|
68
|
+
|
|
69
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
70
|
+
|
|
61
71
|
readonly Pointer: ptr<void>;
|
|
62
72
|
Dispose(): void;
|
|
63
73
|
}
|
|
@@ -72,12 +82,12 @@ export interface __MemoryHandle$views {
|
|
|
72
82
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
73
83
|
}
|
|
74
84
|
|
|
75
|
-
export interface MemoryHandle$instance extends System_Internal.IDisposable$instance {}
|
|
76
|
-
|
|
77
85
|
export type MemoryHandle = MemoryHandle$instance & __MemoryHandle$views;
|
|
78
86
|
|
|
79
87
|
|
|
80
88
|
export interface ReadOnlySequence_1$instance<T> {
|
|
89
|
+
readonly __tsonic_type_System_Buffers_ReadOnlySequence_1: never;
|
|
90
|
+
|
|
81
91
|
readonly End: SequencePosition;
|
|
82
92
|
readonly First: ReadOnlyMemory_1<T>;
|
|
83
93
|
readonly FirstSpan: ReadOnlySpan_1<T>;
|
|
@@ -115,6 +125,8 @@ export const ReadOnlySequence_1: {
|
|
|
115
125
|
export type ReadOnlySequence_1<T> = ReadOnlySequence_1$instance<T>;
|
|
116
126
|
|
|
117
127
|
export interface ReadOnlySequence_1_Enumerator$instance<T> {
|
|
128
|
+
readonly __tsonic_type_System_Buffers_ReadOnlySequence_1_Enumerator: never;
|
|
129
|
+
|
|
118
130
|
readonly Current: ReadOnlyMemory_1<T>;
|
|
119
131
|
MoveNext(): boolean;
|
|
120
132
|
}
|
|
@@ -128,6 +140,8 @@ export const ReadOnlySequence_1_Enumerator: {
|
|
|
128
140
|
export type ReadOnlySequence_1_Enumerator<T> = ReadOnlySequence_1_Enumerator$instance<T>;
|
|
129
141
|
|
|
130
142
|
export interface SequenceReader_1$instance<T extends (IEquatable_1<T> | number | string | boolean)> {
|
|
143
|
+
readonly __tsonic_type_System_Buffers_SequenceReader_1: never;
|
|
144
|
+
|
|
131
145
|
Consumed: long;
|
|
132
146
|
CurrentSpan: ReadOnlySpan_1<T>;
|
|
133
147
|
CurrentSpanIndex: int;
|
|
@@ -174,6 +188,10 @@ export const SequenceReader_1: {
|
|
|
174
188
|
export type SequenceReader_1<T extends (IEquatable_1<T> | number | string | boolean)> = SequenceReader_1$instance<T>;
|
|
175
189
|
|
|
176
190
|
export interface StandardFormat$instance {
|
|
191
|
+
readonly __tsonic_type_System_Buffers_StandardFormat: never;
|
|
192
|
+
|
|
193
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
194
|
+
|
|
177
195
|
readonly HasPrecision: boolean;
|
|
178
196
|
readonly IsDefault: boolean;
|
|
179
197
|
readonly Precision: byte;
|
|
@@ -205,7 +223,11 @@ export interface __StandardFormat$views {
|
|
|
205
223
|
export type StandardFormat = StandardFormat$instance & __StandardFormat$views;
|
|
206
224
|
|
|
207
225
|
|
|
208
|
-
export interface ArrayBufferWriter_1$instance<T> {
|
|
226
|
+
export interface ArrayBufferWriter_1$instance<T> extends IBufferWriter_1$instance<T> {
|
|
227
|
+
readonly __tsonic_type_System_Buffers_ArrayBufferWriter_1: never;
|
|
228
|
+
|
|
229
|
+
readonly __tsonic_iface_System_Buffers_IBufferWriter_1: never;
|
|
230
|
+
|
|
209
231
|
readonly Capacity: int;
|
|
210
232
|
readonly FreeCapacity: int;
|
|
211
233
|
readonly WrittenCount: int;
|
|
@@ -229,12 +251,12 @@ export interface __ArrayBufferWriter_1$views<T> {
|
|
|
229
251
|
As_IBufferWriter_1(): IBufferWriter_1$instance<T>;
|
|
230
252
|
}
|
|
231
253
|
|
|
232
|
-
export interface ArrayBufferWriter_1$instance<T> extends IBufferWriter_1$instance<T> {}
|
|
233
|
-
|
|
234
254
|
export type ArrayBufferWriter_1<T> = ArrayBufferWriter_1$instance<T> & __ArrayBufferWriter_1$views<T>;
|
|
235
255
|
|
|
236
256
|
|
|
237
257
|
export interface ArrayPool_1$instance<T> {
|
|
258
|
+
readonly __tsonic_type_System_Buffers_ArrayPool_1: never;
|
|
259
|
+
|
|
238
260
|
Rent(minimumLength: int): T[];
|
|
239
261
|
Return(array: T[], clearArray?: boolean): void;
|
|
240
262
|
}
|
|
@@ -250,6 +272,12 @@ export const ArrayPool_1: (abstract new<T>() => ArrayPool_1<T>) & {
|
|
|
250
272
|
export type ArrayPool_1<T> = ArrayPool_1$instance<T>;
|
|
251
273
|
|
|
252
274
|
export interface MemoryManager_1$instance<T> {
|
|
275
|
+
readonly __tsonic_type_System_Buffers_MemoryManager_1: never;
|
|
276
|
+
|
|
277
|
+
readonly __tsonic_iface_System_Buffers_IMemoryOwner_1: never;
|
|
278
|
+
readonly __tsonic_iface_System_Buffers_IPinnable: never;
|
|
279
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
280
|
+
|
|
253
281
|
readonly Memory: Memory_1<T>;
|
|
254
282
|
Dispose(disposing: boolean): void;
|
|
255
283
|
GetSpan(): Span_1<T>;
|
|
@@ -273,6 +301,10 @@ export type MemoryManager_1<T> = MemoryManager_1$instance<T> & __MemoryManager_1
|
|
|
273
301
|
|
|
274
302
|
|
|
275
303
|
export interface MemoryPool_1$instance<T> {
|
|
304
|
+
readonly __tsonic_type_System_Buffers_MemoryPool_1: never;
|
|
305
|
+
|
|
306
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
307
|
+
|
|
276
308
|
readonly MaxBufferSize: int;
|
|
277
309
|
Dispose(): void;
|
|
278
310
|
Dispose(disposing: boolean): void;
|
|
@@ -293,6 +325,8 @@ export type MemoryPool_1<T> = MemoryPool_1$instance<T> & __MemoryPool_1$views<T>
|
|
|
293
325
|
|
|
294
326
|
|
|
295
327
|
export interface ReadOnlySequenceSegment_1$instance<T> {
|
|
328
|
+
readonly __tsonic_type_System_Buffers_ReadOnlySequenceSegment_1: never;
|
|
329
|
+
|
|
296
330
|
Memory: ReadOnlyMemory_1<T>;
|
|
297
331
|
get Next(): ReadOnlySequenceSegment_1<T> | undefined;
|
|
298
332
|
set Next(value: ReadOnlySequenceSegment_1<T> | undefined);
|
|
@@ -307,6 +341,8 @@ export const ReadOnlySequenceSegment_1: (abstract new<T>() => ReadOnlySequenceSe
|
|
|
307
341
|
export type ReadOnlySequenceSegment_1<T> = ReadOnlySequenceSegment_1$instance<T>;
|
|
308
342
|
|
|
309
343
|
export interface SearchValues_1$instance<T extends (IEquatable_1<T> | number | string | boolean)> {
|
|
344
|
+
readonly __tsonic_type_System_Buffers_SearchValues_1: never;
|
|
345
|
+
|
|
310
346
|
Contains(value: T): boolean;
|
|
311
347
|
}
|
|
312
348
|
|
|
@@ -15,6 +15,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
15
15
|
import type { Attribute, Boolean as ClrBoolean, Char, Decimal, Double, IAsyncDisposable, IDisposable, IFormatProvider, Int32, Int64, MarshalByRefObject, Object as ClrObject, ReadOnlyMemory_1, ReadOnlySpan_1, Single, String as ClrString, Type, UInt32, UInt64, Void } from "../../System/internal/index.js";
|
|
16
16
|
|
|
17
17
|
export interface GeneratedCodeAttribute$instance extends Attribute {
|
|
18
|
+
readonly __tsonic_type_System_CodeDom_Compiler_GeneratedCodeAttribute: never;
|
|
19
|
+
|
|
18
20
|
readonly Tool: string | undefined;
|
|
19
21
|
readonly Version: string | undefined;
|
|
20
22
|
}
|
|
@@ -28,6 +30,11 @@ export const GeneratedCodeAttribute: {
|
|
|
28
30
|
export type GeneratedCodeAttribute = GeneratedCodeAttribute$instance;
|
|
29
31
|
|
|
30
32
|
export interface IndentedTextWriter$instance extends TextWriter {
|
|
33
|
+
readonly __tsonic_type_System_CodeDom_Compiler_IndentedTextWriter: never;
|
|
34
|
+
|
|
35
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
36
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
37
|
+
|
|
31
38
|
readonly Encoding: Encoding;
|
|
32
39
|
Indent: int;
|
|
33
40
|
readonly InnerWriter: TextWriter;
|
|
@@ -16,6 +16,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
16
16
|
import type { Array as ClrArray, Boolean as ClrBoolean, Byte, ICloneable, Int32, Object as ClrObject, Single, String as ClrString, Type, ValueType, Void } from "../../System/internal/index.js";
|
|
17
17
|
|
|
18
18
|
export interface ICollection$instance extends IEnumerable {
|
|
19
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
20
|
+
|
|
19
21
|
readonly Count: int;
|
|
20
22
|
readonly SyncRoot: unknown;
|
|
21
23
|
readonly IsSynchronized: boolean;
|
|
@@ -24,11 +26,11 @@ export interface ICollection$instance extends IEnumerable {
|
|
|
24
26
|
}
|
|
25
27
|
|
|
26
28
|
|
|
27
|
-
export interface ICollection$instance extends IEnumerable$instance {}
|
|
28
|
-
|
|
29
29
|
export type ICollection = ICollection$instance;
|
|
30
30
|
|
|
31
31
|
export interface IComparer$instance {
|
|
32
|
+
readonly __tsonic_iface_System_Collections_IComparer: never;
|
|
33
|
+
|
|
32
34
|
Compare(x: unknown, y: unknown): int;
|
|
33
35
|
}
|
|
34
36
|
|
|
@@ -36,6 +38,8 @@ export interface IComparer$instance {
|
|
|
36
38
|
export type IComparer = IComparer$instance;
|
|
37
39
|
|
|
38
40
|
export interface IDictionary$instance extends ICollection, IEnumerable {
|
|
41
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
42
|
+
|
|
39
43
|
get Item(): unknown | undefined;
|
|
40
44
|
set Item(value: unknown | undefined);
|
|
41
45
|
readonly Keys: ICollection;
|
|
@@ -58,6 +62,8 @@ export interface IDictionary$instance extends ICollection, IEnumerable {
|
|
|
58
62
|
export type IDictionary = IDictionary$instance;
|
|
59
63
|
|
|
60
64
|
export interface IDictionaryEnumerator$instance extends IEnumerator {
|
|
65
|
+
readonly __tsonic_iface_System_Collections_IDictionaryEnumerator: never;
|
|
66
|
+
|
|
61
67
|
readonly Key: unknown;
|
|
62
68
|
readonly Value: unknown | undefined;
|
|
63
69
|
readonly Entry: DictionaryEntry;
|
|
@@ -67,11 +73,11 @@ export interface IDictionaryEnumerator$instance extends IEnumerator {
|
|
|
67
73
|
}
|
|
68
74
|
|
|
69
75
|
|
|
70
|
-
export interface IDictionaryEnumerator$instance extends IEnumerator$instance {}
|
|
71
|
-
|
|
72
76
|
export type IDictionaryEnumerator = IDictionaryEnumerator$instance;
|
|
73
77
|
|
|
74
78
|
export interface IEnumerable$instance {
|
|
79
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
80
|
+
|
|
75
81
|
GetEnumerator(): IEnumerator;
|
|
76
82
|
}
|
|
77
83
|
|
|
@@ -79,6 +85,8 @@ export interface IEnumerable$instance {
|
|
|
79
85
|
export type IEnumerable = IEnumerable$instance;
|
|
80
86
|
|
|
81
87
|
export interface IEnumerator$instance {
|
|
88
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
89
|
+
|
|
82
90
|
readonly Current: unknown;
|
|
83
91
|
MoveNext(): boolean;
|
|
84
92
|
Reset(): void;
|
|
@@ -88,6 +96,8 @@ export interface IEnumerator$instance {
|
|
|
88
96
|
export type IEnumerator = IEnumerator$instance;
|
|
89
97
|
|
|
90
98
|
export interface IEqualityComparer$instance {
|
|
99
|
+
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
100
|
+
|
|
91
101
|
Equals(x: unknown, y: unknown): boolean;
|
|
92
102
|
GetHashCode(obj: unknown): int;
|
|
93
103
|
}
|
|
@@ -96,6 +106,8 @@ export interface IEqualityComparer$instance {
|
|
|
96
106
|
export type IEqualityComparer = IEqualityComparer$instance;
|
|
97
107
|
|
|
98
108
|
export interface IHashCodeProvider$instance {
|
|
109
|
+
readonly __tsonic_iface_System_Collections_IHashCodeProvider: never;
|
|
110
|
+
|
|
99
111
|
GetHashCode(obj: unknown): int;
|
|
100
112
|
}
|
|
101
113
|
|
|
@@ -103,6 +115,8 @@ export interface IHashCodeProvider$instance {
|
|
|
103
115
|
export type IHashCodeProvider = IHashCodeProvider$instance;
|
|
104
116
|
|
|
105
117
|
export interface IList$instance extends ICollection, IEnumerable {
|
|
118
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
119
|
+
|
|
106
120
|
[index: number]: unknown;
|
|
107
121
|
readonly IsReadOnly: boolean;
|
|
108
122
|
readonly IsFixedSize: boolean;
|
|
@@ -123,6 +137,8 @@ export interface IList$instance extends ICollection, IEnumerable {
|
|
|
123
137
|
export type IList = IList$instance;
|
|
124
138
|
|
|
125
139
|
export interface IStructuralComparable$instance {
|
|
140
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
141
|
+
|
|
126
142
|
CompareTo(other: unknown, comparer: IComparer): int;
|
|
127
143
|
}
|
|
128
144
|
|
|
@@ -130,6 +146,8 @@ export interface IStructuralComparable$instance {
|
|
|
130
146
|
export type IStructuralComparable = IStructuralComparable$instance;
|
|
131
147
|
|
|
132
148
|
export interface IStructuralEquatable$instance {
|
|
149
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
150
|
+
|
|
133
151
|
Equals(other: unknown, comparer: IEqualityComparer): boolean;
|
|
134
152
|
GetHashCode(comparer: IEqualityComparer): int;
|
|
135
153
|
}
|
|
@@ -138,6 +156,8 @@ export interface IStructuralEquatable$instance {
|
|
|
138
156
|
export type IStructuralEquatable = IStructuralEquatable$instance;
|
|
139
157
|
|
|
140
158
|
export interface DictionaryEntry$instance {
|
|
159
|
+
readonly __tsonic_type_System_Collections_DictionaryEntry: never;
|
|
160
|
+
|
|
141
161
|
Key: unknown;
|
|
142
162
|
get Value(): unknown | undefined;
|
|
143
163
|
set Value(value: unknown | undefined);
|
|
@@ -153,7 +173,14 @@ export const DictionaryEntry: {
|
|
|
153
173
|
|
|
154
174
|
export type DictionaryEntry = DictionaryEntry$instance;
|
|
155
175
|
|
|
156
|
-
export interface ArrayList$instance {
|
|
176
|
+
export interface ArrayList$instance extends System_Internal.ICloneable$instance {
|
|
177
|
+
readonly __tsonic_type_System_Collections_ArrayList: never;
|
|
178
|
+
|
|
179
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
180
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
181
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
182
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
183
|
+
|
|
157
184
|
Capacity: int;
|
|
158
185
|
readonly Count: int;
|
|
159
186
|
readonly IsFixedSize: boolean;
|
|
@@ -220,12 +247,17 @@ export interface __ArrayList$views {
|
|
|
220
247
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
221
248
|
}
|
|
222
249
|
|
|
223
|
-
export interface ArrayList$instance extends System_Internal.ICloneable$instance {}
|
|
224
|
-
|
|
225
250
|
export type ArrayList = ArrayList$instance & __ArrayList$views;
|
|
226
251
|
|
|
227
252
|
|
|
228
|
-
export interface BitArray$instance {
|
|
253
|
+
export interface BitArray$instance extends System_Internal.ICloneable$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
254
|
+
readonly __tsonic_type_System_Collections_BitArray: never;
|
|
255
|
+
|
|
256
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
257
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
258
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
259
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
260
|
+
|
|
229
261
|
readonly Count: int;
|
|
230
262
|
readonly IsReadOnly: boolean;
|
|
231
263
|
readonly IsSynchronized: boolean;
|
|
@@ -266,12 +298,14 @@ export interface __BitArray$views {
|
|
|
266
298
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
267
299
|
}
|
|
268
300
|
|
|
269
|
-
export interface BitArray$instance extends System_Internal.ICloneable$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
270
|
-
|
|
271
301
|
export type BitArray = BitArray$instance & __BitArray$views;
|
|
272
302
|
|
|
273
303
|
|
|
274
304
|
export interface CaseInsensitiveComparer$instance {
|
|
305
|
+
readonly __tsonic_type_System_Collections_CaseInsensitiveComparer: never;
|
|
306
|
+
|
|
307
|
+
readonly __tsonic_iface_System_Collections_IComparer: never;
|
|
308
|
+
|
|
275
309
|
Compare(a: unknown, b: unknown): int;
|
|
276
310
|
}
|
|
277
311
|
|
|
@@ -288,12 +322,14 @@ export interface __CaseInsensitiveComparer$views {
|
|
|
288
322
|
As_IComparer(): IComparer$instance;
|
|
289
323
|
}
|
|
290
324
|
|
|
291
|
-
export interface CaseInsensitiveComparer$instance extends IComparer$instance {}
|
|
292
|
-
|
|
293
325
|
export type CaseInsensitiveComparer = CaseInsensitiveComparer$instance & __CaseInsensitiveComparer$views;
|
|
294
326
|
|
|
295
327
|
|
|
296
328
|
export interface CaseInsensitiveHashCodeProvider$instance {
|
|
329
|
+
readonly __tsonic_type_System_Collections_CaseInsensitiveHashCodeProvider: never;
|
|
330
|
+
|
|
331
|
+
readonly __tsonic_iface_System_Collections_IHashCodeProvider: never;
|
|
332
|
+
|
|
297
333
|
GetHashCode(obj: unknown): int;
|
|
298
334
|
}
|
|
299
335
|
|
|
@@ -314,6 +350,12 @@ export type CaseInsensitiveHashCodeProvider = CaseInsensitiveHashCodeProvider$in
|
|
|
314
350
|
|
|
315
351
|
|
|
316
352
|
export interface CollectionBase$instance {
|
|
353
|
+
readonly __tsonic_type_System_Collections_CollectionBase: never;
|
|
354
|
+
|
|
355
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
356
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
357
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
358
|
+
|
|
317
359
|
Capacity: int;
|
|
318
360
|
readonly Count: int;
|
|
319
361
|
Clear(): void;
|
|
@@ -344,7 +386,12 @@ export interface __CollectionBase$views {
|
|
|
344
386
|
export type CollectionBase = CollectionBase$instance & __CollectionBase$views;
|
|
345
387
|
|
|
346
388
|
|
|
347
|
-
export interface Comparer$instance {
|
|
389
|
+
export interface Comparer$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
390
|
+
readonly __tsonic_type_System_Collections_Comparer: never;
|
|
391
|
+
|
|
392
|
+
readonly __tsonic_iface_System_Collections_IComparer: never;
|
|
393
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
394
|
+
|
|
348
395
|
Compare(a: unknown, b: unknown): int;
|
|
349
396
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
350
397
|
}
|
|
@@ -362,12 +409,16 @@ export interface __Comparer$views {
|
|
|
362
409
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
363
410
|
}
|
|
364
411
|
|
|
365
|
-
export interface Comparer$instance extends IComparer$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
366
|
-
|
|
367
412
|
export type Comparer = Comparer$instance & __Comparer$views;
|
|
368
413
|
|
|
369
414
|
|
|
370
415
|
export interface DictionaryBase$instance {
|
|
416
|
+
readonly __tsonic_type_System_Collections_DictionaryBase: never;
|
|
417
|
+
|
|
418
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
419
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
420
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
421
|
+
|
|
371
422
|
readonly Count: int;
|
|
372
423
|
Clear(): void;
|
|
373
424
|
CopyTo(array: ClrArray, index: int): void;
|
|
@@ -398,7 +449,16 @@ export interface __DictionaryBase$views {
|
|
|
398
449
|
export type DictionaryBase = DictionaryBase$instance & __DictionaryBase$views;
|
|
399
450
|
|
|
400
451
|
|
|
401
|
-
export interface Hashtable$instance {
|
|
452
|
+
export interface Hashtable$instance extends System_Internal.ICloneable$instance, System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
453
|
+
readonly __tsonic_type_System_Collections_Hashtable: never;
|
|
454
|
+
|
|
455
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
456
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
457
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
458
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
459
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
460
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
461
|
+
|
|
402
462
|
readonly Count: int;
|
|
403
463
|
readonly IsFixedSize: boolean;
|
|
404
464
|
readonly IsReadOnly: boolean;
|
|
@@ -453,12 +513,16 @@ export interface __Hashtable$views {
|
|
|
453
513
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
454
514
|
}
|
|
455
515
|
|
|
456
|
-
export interface Hashtable$instance extends System_Internal.ICloneable$instance, System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
457
|
-
|
|
458
516
|
export type Hashtable = Hashtable$instance & __Hashtable$views;
|
|
459
517
|
|
|
460
518
|
|
|
461
519
|
export interface ListDictionaryInternal$instance {
|
|
520
|
+
readonly __tsonic_type_System_Collections_ListDictionaryInternal: never;
|
|
521
|
+
|
|
522
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
523
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
524
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
525
|
+
|
|
462
526
|
readonly Count: int;
|
|
463
527
|
readonly IsFixedSize: boolean;
|
|
464
528
|
readonly IsReadOnly: boolean;
|
|
@@ -491,7 +555,13 @@ export interface __ListDictionaryInternal$views {
|
|
|
491
555
|
export type ListDictionaryInternal = ListDictionaryInternal$instance & __ListDictionaryInternal$views;
|
|
492
556
|
|
|
493
557
|
|
|
494
|
-
export interface Queue$instance {
|
|
558
|
+
export interface Queue$instance extends System_Internal.ICloneable$instance {
|
|
559
|
+
readonly __tsonic_type_System_Collections_Queue: never;
|
|
560
|
+
|
|
561
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
562
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
563
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
564
|
+
|
|
495
565
|
readonly Count: int;
|
|
496
566
|
readonly IsSynchronized: boolean;
|
|
497
567
|
readonly SyncRoot: unknown;
|
|
@@ -523,12 +593,15 @@ export interface __Queue$views {
|
|
|
523
593
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
524
594
|
}
|
|
525
595
|
|
|
526
|
-
export interface Queue$instance extends System_Internal.ICloneable$instance {}
|
|
527
|
-
|
|
528
596
|
export type Queue = Queue$instance & __Queue$views;
|
|
529
597
|
|
|
530
598
|
|
|
531
599
|
export interface ReadOnlyCollectionBase$instance {
|
|
600
|
+
readonly __tsonic_type_System_Collections_ReadOnlyCollectionBase: never;
|
|
601
|
+
|
|
602
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
603
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
604
|
+
|
|
532
605
|
readonly Count: int;
|
|
533
606
|
GetEnumerator(): IEnumerator;
|
|
534
607
|
}
|
|
@@ -546,7 +619,14 @@ export interface __ReadOnlyCollectionBase$views {
|
|
|
546
619
|
export type ReadOnlyCollectionBase = ReadOnlyCollectionBase$instance & __ReadOnlyCollectionBase$views;
|
|
547
620
|
|
|
548
621
|
|
|
549
|
-
export interface SortedList$instance {
|
|
622
|
+
export interface SortedList$instance extends System_Internal.ICloneable$instance {
|
|
623
|
+
readonly __tsonic_type_System_Collections_SortedList: never;
|
|
624
|
+
|
|
625
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
626
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
627
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
628
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
629
|
+
|
|
550
630
|
Capacity: int;
|
|
551
631
|
readonly Count: int;
|
|
552
632
|
readonly IsFixedSize: boolean;
|
|
@@ -596,12 +676,16 @@ export interface __SortedList$views {
|
|
|
596
676
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
597
677
|
}
|
|
598
678
|
|
|
599
|
-
export interface SortedList$instance extends System_Internal.ICloneable$instance {}
|
|
600
|
-
|
|
601
679
|
export type SortedList = SortedList$instance & __SortedList$views;
|
|
602
680
|
|
|
603
681
|
|
|
604
|
-
export interface Stack$instance {
|
|
682
|
+
export interface Stack$instance extends System_Internal.ICloneable$instance {
|
|
683
|
+
readonly __tsonic_type_System_Collections_Stack: never;
|
|
684
|
+
|
|
685
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
686
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
687
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
688
|
+
|
|
605
689
|
readonly Count: int;
|
|
606
690
|
readonly IsSynchronized: boolean;
|
|
607
691
|
readonly SyncRoot: unknown;
|
|
@@ -631,8 +715,6 @@ export interface __Stack$views {
|
|
|
631
715
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
632
716
|
}
|
|
633
717
|
|
|
634
|
-
export interface Stack$instance extends System_Internal.ICloneable$instance {}
|
|
635
|
-
|
|
636
718
|
export type Stack = Stack$instance & __Stack$views;
|
|
637
719
|
|
|
638
720
|
|
|
@@ -24,6 +24,8 @@ export enum EnumerablePartitionerOptions {
|
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
export interface IProducerConsumerCollection_1$instance<T> extends IEnumerable_1<T>, IEnumerable, ICollection {
|
|
27
|
+
readonly __tsonic_iface_System_Collections_Concurrent_IProducerConsumerCollection_1: never;
|
|
28
|
+
|
|
27
29
|
readonly Count: int;
|
|
28
30
|
readonly SyncRoot: unknown;
|
|
29
31
|
readonly IsSynchronized: boolean;
|
|
@@ -41,6 +43,8 @@ export interface IProducerConsumerCollection_1$instance<T> extends IEnumerable_1
|
|
|
41
43
|
export type IProducerConsumerCollection_1<T> = IProducerConsumerCollection_1$instance<T>;
|
|
42
44
|
|
|
43
45
|
export interface ConcurrentDictionary_2_AlternateLookup_1$instance<TKey, TValue, TAlternateKey> {
|
|
46
|
+
readonly __tsonic_type_System_Collections_Concurrent_ConcurrentDictionary_2_AlternateLookup_1: never;
|
|
47
|
+
|
|
44
48
|
readonly Dictionary: ConcurrentDictionary_2<TKey, TValue>;
|
|
45
49
|
Item: TValue;
|
|
46
50
|
ContainsKey(key: TAlternateKey): boolean;
|
|
@@ -59,7 +63,15 @@ export const ConcurrentDictionary_2_AlternateLookup_1: {
|
|
|
59
63
|
|
|
60
64
|
export type ConcurrentDictionary_2_AlternateLookup_1<TKey, TValue, TAlternateKey> = ConcurrentDictionary_2_AlternateLookup_1$instance<TKey, TValue, TAlternateKey>;
|
|
61
65
|
|
|
62
|
-
export interface BlockingCollection_1$instance<T> {
|
|
66
|
+
export interface BlockingCollection_1$instance<T> extends System_Collections_Generic_Internal.IReadOnlyCollection_1$instance<T> {
|
|
67
|
+
readonly __tsonic_type_System_Collections_Concurrent_BlockingCollection_1: never;
|
|
68
|
+
|
|
69
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
70
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
71
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
72
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
73
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
74
|
+
|
|
63
75
|
readonly BoundedCapacity: int;
|
|
64
76
|
readonly Count: int;
|
|
65
77
|
readonly IsAddingCompleted: boolean;
|
|
@@ -114,12 +126,18 @@ export interface __BlockingCollection_1$views<T> {
|
|
|
114
126
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
115
127
|
}
|
|
116
128
|
|
|
117
|
-
export interface BlockingCollection_1$instance<T> extends System_Collections_Generic_Internal.IReadOnlyCollection_1$instance<T> {}
|
|
118
|
-
|
|
119
129
|
export type BlockingCollection_1<T> = BlockingCollection_1$instance<T> & __BlockingCollection_1$views<T>;
|
|
120
130
|
|
|
121
131
|
|
|
122
132
|
export interface ConcurrentBag_1$instance<T> {
|
|
133
|
+
readonly __tsonic_type_System_Collections_Concurrent_ConcurrentBag_1: never;
|
|
134
|
+
|
|
135
|
+
readonly __tsonic_iface_System_Collections_Concurrent_IProducerConsumerCollection_1: never;
|
|
136
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
137
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
138
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
139
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
140
|
+
|
|
123
141
|
readonly Count: int;
|
|
124
142
|
readonly IsEmpty: boolean;
|
|
125
143
|
Add(item: T): void;
|
|
@@ -150,6 +168,17 @@ export type ConcurrentBag_1<T> = ConcurrentBag_1$instance<T> & __ConcurrentBag_1
|
|
|
150
168
|
|
|
151
169
|
|
|
152
170
|
export interface ConcurrentDictionary_2$instance<TKey, TValue> {
|
|
171
|
+
readonly __tsonic_type_System_Collections_Concurrent_ConcurrentDictionary_2: never;
|
|
172
|
+
|
|
173
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
174
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
175
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
176
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
177
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyDictionary_2: never;
|
|
178
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
179
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
180
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
181
|
+
|
|
153
182
|
readonly Comparer: IEqualityComparer_1<TKey>;
|
|
154
183
|
readonly Count: int;
|
|
155
184
|
readonly IsEmpty: boolean;
|
|
@@ -202,6 +231,14 @@ export type ConcurrentDictionary_2<TKey, TValue> = ConcurrentDictionary_2$instan
|
|
|
202
231
|
|
|
203
232
|
|
|
204
233
|
export interface ConcurrentQueue_1$instance<T> {
|
|
234
|
+
readonly __tsonic_type_System_Collections_Concurrent_ConcurrentQueue_1: never;
|
|
235
|
+
|
|
236
|
+
readonly __tsonic_iface_System_Collections_Concurrent_IProducerConsumerCollection_1: never;
|
|
237
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
238
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
239
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
240
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
241
|
+
|
|
205
242
|
readonly Count: int;
|
|
206
243
|
readonly IsEmpty: boolean;
|
|
207
244
|
Clear(): void;
|
|
@@ -232,6 +269,14 @@ export type ConcurrentQueue_1<T> = ConcurrentQueue_1$instance<T> & __ConcurrentQ
|
|
|
232
269
|
|
|
233
270
|
|
|
234
271
|
export interface ConcurrentStack_1$instance<T> {
|
|
272
|
+
readonly __tsonic_type_System_Collections_Concurrent_ConcurrentStack_1: never;
|
|
273
|
+
|
|
274
|
+
readonly __tsonic_iface_System_Collections_Concurrent_IProducerConsumerCollection_1: never;
|
|
275
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
276
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
277
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
278
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
279
|
+
|
|
235
280
|
readonly Count: int;
|
|
236
281
|
readonly IsEmpty: boolean;
|
|
237
282
|
Clear(): void;
|
|
@@ -266,6 +311,8 @@ export type ConcurrentStack_1<T> = ConcurrentStack_1$instance<T> & __ConcurrentS
|
|
|
266
311
|
|
|
267
312
|
|
|
268
313
|
export interface OrderablePartitioner_1$instance<TSource> extends Partitioner_1<TSource> {
|
|
314
|
+
readonly __tsonic_type_System_Collections_Concurrent_OrderablePartitioner_1: never;
|
|
315
|
+
|
|
269
316
|
readonly KeysNormalized: boolean;
|
|
270
317
|
readonly KeysOrderedAcrossPartitions: boolean;
|
|
271
318
|
readonly KeysOrderedInEachPartition: boolean;
|
|
@@ -285,6 +332,8 @@ export const OrderablePartitioner_1: (abstract new<TSource>(keysOrderedInEachPar
|
|
|
285
332
|
export type OrderablePartitioner_1<TSource> = OrderablePartitioner_1$instance<TSource>;
|
|
286
333
|
|
|
287
334
|
export interface Partitioner_1$instance<TSource> {
|
|
335
|
+
readonly __tsonic_type_System_Collections_Concurrent_Partitioner_1: never;
|
|
336
|
+
|
|
288
337
|
readonly SupportsDynamicPartitions: boolean;
|
|
289
338
|
GetDynamicPartitions(): IEnumerable_1<TSource>;
|
|
290
339
|
GetPartitions(partitionCount: int): IList_1<IEnumerator_1<TSource>>;
|