@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
|
@@ -21,6 +21,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
21
21
|
import type { Action_1, Array as ClrArray, Boolean as ClrBoolean, Byte, Comparison_1, Converter_2, Enum, Exception, Func_2, Func_3, IAsyncDisposable, IComparable_1, IDisposable, IEquatable_1, Int32, Nullable_1, Object as ClrObject, Predicate_1, ReadOnlySpan_1, Span_1, String as ClrString, SystemException, Type, ValueTuple_2, ValueType, Void } from "../../System/internal/index.js";
|
|
22
22
|
|
|
23
23
|
export interface IAlternateEqualityComparer_2$instance<TAlternate, T> {
|
|
24
|
+
readonly __tsonic_iface_System_Collections_Generic_IAlternateEqualityComparer_2: never;
|
|
25
|
+
|
|
24
26
|
Create(alternate: TAlternate): T;
|
|
25
27
|
Equals(alternate: TAlternate, other: T): boolean;
|
|
26
28
|
GetHashCode(alternate: TAlternate): int;
|
|
@@ -30,6 +32,8 @@ export interface IAlternateEqualityComparer_2$instance<TAlternate, T> {
|
|
|
30
32
|
export type IAlternateEqualityComparer_2<TAlternate, T> = IAlternateEqualityComparer_2$instance<TAlternate, T>;
|
|
31
33
|
|
|
32
34
|
export interface IAsyncEnumerable_1$instance<T> {
|
|
35
|
+
readonly __tsonic_iface_System_Collections_Generic_IAsyncEnumerable_1: never;
|
|
36
|
+
|
|
33
37
|
GetAsyncEnumerator(cancellationToken?: CancellationToken): IAsyncEnumerator_1<T>;
|
|
34
38
|
}
|
|
35
39
|
|
|
@@ -37,6 +41,8 @@ export interface IAsyncEnumerable_1$instance<T> {
|
|
|
37
41
|
export type IAsyncEnumerable_1<T> = IAsyncEnumerable_1$instance<T>;
|
|
38
42
|
|
|
39
43
|
export interface IAsyncEnumerator_1$instance<T> extends IAsyncDisposable {
|
|
44
|
+
readonly __tsonic_iface_System_Collections_Generic_IAsyncEnumerator_1: never;
|
|
45
|
+
|
|
40
46
|
readonly Current: T;
|
|
41
47
|
DisposeAsync(): ValueTask;
|
|
42
48
|
MoveNextAsync(): ValueTask_1<System_Internal.Boolean>;
|
|
@@ -48,6 +54,8 @@ export interface IAsyncEnumerator_1$instance<T> extends System_Internal.IAsyncDi
|
|
|
48
54
|
export type IAsyncEnumerator_1<T> = IAsyncEnumerator_1$instance<T>;
|
|
49
55
|
|
|
50
56
|
export interface ICollection_1$instance<T> extends IEnumerable_1<T>, IEnumerable {
|
|
57
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
58
|
+
|
|
51
59
|
readonly Count: int;
|
|
52
60
|
readonly IsReadOnly: boolean;
|
|
53
61
|
Add(item: T): void;
|
|
@@ -63,6 +71,8 @@ export interface ICollection_1$instance<T> extends IEnumerable_1<T>, IEnumerable
|
|
|
63
71
|
export type ICollection_1<T> = ICollection_1$instance<T>;
|
|
64
72
|
|
|
65
73
|
export interface IComparer_1$instance<T> {
|
|
74
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
75
|
+
|
|
66
76
|
Compare(x: T, y: T): int;
|
|
67
77
|
}
|
|
68
78
|
|
|
@@ -70,6 +80,8 @@ export interface IComparer_1$instance<T> {
|
|
|
70
80
|
export type IComparer_1<T> = IComparer_1$instance<T>;
|
|
71
81
|
|
|
72
82
|
export interface IDictionary_2$instance<TKey, TValue> extends ICollection_1<KeyValuePair_2<TKey, TValue>>, IEnumerable_1<KeyValuePair_2<TKey, TValue>>, IEnumerable {
|
|
83
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
84
|
+
|
|
73
85
|
Item: TValue;
|
|
74
86
|
readonly Keys: ICollection_1<TKey>;
|
|
75
87
|
readonly Values: ICollection_1<TValue>;
|
|
@@ -91,6 +103,8 @@ export interface IDictionary_2$instance<TKey, TValue> extends ICollection_1<KeyV
|
|
|
91
103
|
export type IDictionary_2<TKey, TValue> = IDictionary_2$instance<TKey, TValue>;
|
|
92
104
|
|
|
93
105
|
export interface IEnumerable_1$instance<T> extends IEnumerable {
|
|
106
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
107
|
+
|
|
94
108
|
GetEnumerator(): IEnumerator_1<T>;
|
|
95
109
|
GetEnumerator(): IEnumerator;
|
|
96
110
|
}
|
|
@@ -99,6 +113,8 @@ export interface IEnumerable_1$instance<T> extends IEnumerable {
|
|
|
99
113
|
export type IEnumerable_1<T> = IEnumerable_1$instance<T>;
|
|
100
114
|
|
|
101
115
|
export interface IEnumerator_1$instance<T> extends IDisposable, IEnumerator {
|
|
116
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
117
|
+
|
|
102
118
|
readonly Current: T;
|
|
103
119
|
Dispose(): void;
|
|
104
120
|
MoveNext(): boolean;
|
|
@@ -111,6 +127,8 @@ export interface IEnumerator_1$instance<T> extends System_Internal.IDisposable$i
|
|
|
111
127
|
export type IEnumerator_1<T> = IEnumerator_1$instance<T>;
|
|
112
128
|
|
|
113
129
|
export interface IEqualityComparer_1$instance<T> {
|
|
130
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
131
|
+
|
|
114
132
|
Equals(x: T, y: T): boolean;
|
|
115
133
|
GetHashCode(obj: T): int;
|
|
116
134
|
}
|
|
@@ -119,6 +137,8 @@ export interface IEqualityComparer_1$instance<T> {
|
|
|
119
137
|
export type IEqualityComparer_1<T> = IEqualityComparer_1$instance<T>;
|
|
120
138
|
|
|
121
139
|
export interface IList_1$instance<T> extends ICollection_1<T>, IEnumerable_1<T>, IEnumerable {
|
|
140
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
141
|
+
|
|
122
142
|
[index: number]: T;
|
|
123
143
|
readonly Count: int;
|
|
124
144
|
readonly IsReadOnly: boolean;
|
|
@@ -138,6 +158,8 @@ export interface IList_1$instance<T> extends ICollection_1<T>, IEnumerable_1<T>,
|
|
|
138
158
|
export type IList_1<T> = IList_1$instance<T>;
|
|
139
159
|
|
|
140
160
|
export interface IReadOnlyCollection_1$instance<T> extends IEnumerable_1<T>, IEnumerable {
|
|
161
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
162
|
+
|
|
141
163
|
readonly Count: int;
|
|
142
164
|
GetEnumerator(): IEnumerator_1<T>;
|
|
143
165
|
GetEnumerator(): IEnumerator;
|
|
@@ -148,6 +170,8 @@ export interface IReadOnlyCollection_1$instance<T> extends IEnumerable_1<T>, IEn
|
|
|
148
170
|
export type IReadOnlyCollection_1<T> = IReadOnlyCollection_1$instance<T>;
|
|
149
171
|
|
|
150
172
|
export interface IReadOnlyDictionary_2$instance<TKey, TValue> extends IReadOnlyCollection_1<KeyValuePair_2<TKey, TValue>>, IEnumerable_1<KeyValuePair_2<TKey, TValue>>, IEnumerable {
|
|
173
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyDictionary_2: never;
|
|
174
|
+
|
|
151
175
|
readonly Item: TValue;
|
|
152
176
|
readonly Keys: IEnumerable_1<TKey>;
|
|
153
177
|
readonly Values: IEnumerable_1<TValue>;
|
|
@@ -163,6 +187,8 @@ export interface IReadOnlyDictionary_2$instance<TKey, TValue> extends IReadOnlyC
|
|
|
163
187
|
export type IReadOnlyDictionary_2<TKey, TValue> = IReadOnlyDictionary_2$instance<TKey, TValue>;
|
|
164
188
|
|
|
165
189
|
export interface IReadOnlyList_1$instance<T> extends IReadOnlyCollection_1<T>, IEnumerable_1<T>, IEnumerable {
|
|
190
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
191
|
+
|
|
166
192
|
readonly [index: number]: T;
|
|
167
193
|
readonly Count: int;
|
|
168
194
|
GetEnumerator(): IEnumerator_1<T>;
|
|
@@ -174,6 +200,8 @@ export interface IReadOnlyList_1$instance<T> extends IReadOnlyCollection_1<T>, I
|
|
|
174
200
|
export type IReadOnlyList_1<T> = IReadOnlyList_1$instance<T>;
|
|
175
201
|
|
|
176
202
|
export interface IReadOnlySet_1$instance<T> extends IReadOnlyCollection_1<T>, IEnumerable_1<T>, IEnumerable {
|
|
203
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlySet_1: never;
|
|
204
|
+
|
|
177
205
|
readonly Count: int;
|
|
178
206
|
Contains(item: T): boolean;
|
|
179
207
|
GetEnumerator(): IEnumerator_1<T>;
|
|
@@ -186,6 +214,8 @@ export interface IReadOnlySet_1$instance<T> extends IReadOnlyCollection_1<T>, IE
|
|
|
186
214
|
export type IReadOnlySet_1<T> = IReadOnlySet_1$instance<T>;
|
|
187
215
|
|
|
188
216
|
export interface ISet_1$instance<T> extends ICollection_1<T>, IEnumerable_1<T>, IEnumerable {
|
|
217
|
+
readonly __tsonic_iface_System_Collections_Generic_ISet_1: never;
|
|
218
|
+
|
|
189
219
|
readonly Count: int;
|
|
190
220
|
readonly IsReadOnly: boolean;
|
|
191
221
|
Add(item: T): void;
|
|
@@ -204,6 +234,8 @@ export interface ISet_1$instance<T> extends ICollection_1<T>, IEnumerable_1<T>,
|
|
|
204
234
|
export type ISet_1<T> = ISet_1$instance<T>;
|
|
205
235
|
|
|
206
236
|
export interface Dictionary_2_AlternateLookup_1$instance<TKey, TValue, TAlternateKey> {
|
|
237
|
+
readonly __tsonic_type_System_Collections_Generic_Dictionary_2_AlternateLookup_1: never;
|
|
238
|
+
|
|
207
239
|
readonly Dictionary: Dictionary_2<TKey, TValue>;
|
|
208
240
|
Item: TValue;
|
|
209
241
|
ContainsKey(key: TAlternateKey): boolean;
|
|
@@ -223,6 +255,13 @@ export const Dictionary_2_AlternateLookup_1: {
|
|
|
223
255
|
export type Dictionary_2_AlternateLookup_1<TKey, TValue, TAlternateKey> = Dictionary_2_AlternateLookup_1$instance<TKey, TValue, TAlternateKey>;
|
|
224
256
|
|
|
225
257
|
export interface Dictionary_2_Enumerator$instance<TKey, TValue> extends IDisposable {
|
|
258
|
+
readonly __tsonic_type_System_Collections_Generic_Dictionary_2_Enumerator: never;
|
|
259
|
+
|
|
260
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
261
|
+
readonly __tsonic_iface_System_Collections_IDictionaryEnumerator: never;
|
|
262
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
263
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
264
|
+
|
|
226
265
|
readonly Current: KeyValuePair_2<TKey, TValue>;
|
|
227
266
|
Dispose(): void;
|
|
228
267
|
MoveNext(): boolean;
|
|
@@ -245,6 +284,12 @@ export type Dictionary_2_Enumerator<TKey, TValue> = Dictionary_2_Enumerator$inst
|
|
|
245
284
|
|
|
246
285
|
|
|
247
286
|
export interface Dictionary_2_KeyCollection_Enumerator$instance<TKey, TValue> extends IDisposable {
|
|
287
|
+
readonly __tsonic_type_System_Collections_Generic_Dictionary_2_KeyCollection_Enumerator: never;
|
|
288
|
+
|
|
289
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
290
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
291
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
292
|
+
|
|
248
293
|
readonly Current: TKey;
|
|
249
294
|
Dispose(): void;
|
|
250
295
|
MoveNext(): boolean;
|
|
@@ -266,6 +311,12 @@ export type Dictionary_2_KeyCollection_Enumerator<TKey, TValue> = Dictionary_2_K
|
|
|
266
311
|
|
|
267
312
|
|
|
268
313
|
export interface Dictionary_2_ValueCollection_Enumerator$instance<TKey, TValue> extends IDisposable {
|
|
314
|
+
readonly __tsonic_type_System_Collections_Generic_Dictionary_2_ValueCollection_Enumerator: never;
|
|
315
|
+
|
|
316
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
317
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
318
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
319
|
+
|
|
269
320
|
readonly Current: TValue;
|
|
270
321
|
Dispose(): void;
|
|
271
322
|
MoveNext(): boolean;
|
|
@@ -287,6 +338,8 @@ export type Dictionary_2_ValueCollection_Enumerator<TKey, TValue> = Dictionary_2
|
|
|
287
338
|
|
|
288
339
|
|
|
289
340
|
export interface HashSet_1_AlternateLookup_1$instance<T, TAlternate> {
|
|
341
|
+
readonly __tsonic_type_System_Collections_Generic_HashSet_1_AlternateLookup_1: never;
|
|
342
|
+
|
|
290
343
|
readonly Set: HashSet_1<T>;
|
|
291
344
|
Add(item: TAlternate): boolean;
|
|
292
345
|
Contains(item: TAlternate): boolean;
|
|
@@ -303,6 +356,12 @@ export const HashSet_1_AlternateLookup_1: {
|
|
|
303
356
|
export type HashSet_1_AlternateLookup_1<T, TAlternate> = HashSet_1_AlternateLookup_1$instance<T, TAlternate>;
|
|
304
357
|
|
|
305
358
|
export interface HashSet_1_Enumerator$instance<T> extends IDisposable {
|
|
359
|
+
readonly __tsonic_type_System_Collections_Generic_HashSet_1_Enumerator: never;
|
|
360
|
+
|
|
361
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
362
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
363
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
364
|
+
|
|
306
365
|
readonly Current: T;
|
|
307
366
|
Dispose(): void;
|
|
308
367
|
MoveNext(): boolean;
|
|
@@ -324,6 +383,8 @@ export type HashSet_1_Enumerator<T> = HashSet_1_Enumerator$instance<T> & __HashS
|
|
|
324
383
|
|
|
325
384
|
|
|
326
385
|
export interface KeyValuePair_2$instance<TKey, TValue> {
|
|
386
|
+
readonly __tsonic_type_System_Collections_Generic_KeyValuePair_2: never;
|
|
387
|
+
|
|
327
388
|
readonly Key: TKey;
|
|
328
389
|
readonly Value: TValue;
|
|
329
390
|
Deconstruct(key: TKey, value: TValue): void;
|
|
@@ -338,7 +399,15 @@ export const KeyValuePair_2: {
|
|
|
338
399
|
|
|
339
400
|
export type KeyValuePair_2<TKey, TValue> = KeyValuePair_2$instance<TKey, TValue>;
|
|
340
401
|
|
|
341
|
-
export interface LinkedList_1_Enumerator$instance<T> extends IDisposable {
|
|
402
|
+
export interface LinkedList_1_Enumerator$instance<T> extends IDisposable, System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
403
|
+
readonly __tsonic_type_System_Collections_Generic_LinkedList_1_Enumerator: never;
|
|
404
|
+
|
|
405
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
406
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
407
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
408
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
409
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
410
|
+
|
|
342
411
|
readonly Current: T;
|
|
343
412
|
Dispose(): void;
|
|
344
413
|
MoveNext(): boolean;
|
|
@@ -358,12 +427,16 @@ export interface __LinkedList_1_Enumerator$views<T> {
|
|
|
358
427
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
359
428
|
}
|
|
360
429
|
|
|
361
|
-
export interface LinkedList_1_Enumerator$instance<T> extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
362
|
-
|
|
363
430
|
export type LinkedList_1_Enumerator<T> = LinkedList_1_Enumerator$instance<T> & __LinkedList_1_Enumerator$views<T>;
|
|
364
431
|
|
|
365
432
|
|
|
366
433
|
export interface List_1_Enumerator$instance<T> extends IDisposable {
|
|
434
|
+
readonly __tsonic_type_System_Collections_Generic_List_1_Enumerator: never;
|
|
435
|
+
|
|
436
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
437
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
438
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
439
|
+
|
|
367
440
|
readonly Current: T;
|
|
368
441
|
Dispose(): void;
|
|
369
442
|
MoveNext(): boolean;
|
|
@@ -385,6 +458,13 @@ export type List_1_Enumerator<T> = List_1_Enumerator$instance<T> & __List_1_Enum
|
|
|
385
458
|
|
|
386
459
|
|
|
387
460
|
export interface OrderedDictionary_2_Enumerator$instance<TKey, TValue> {
|
|
461
|
+
readonly __tsonic_type_System_Collections_Generic_OrderedDictionary_2_Enumerator: never;
|
|
462
|
+
|
|
463
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
464
|
+
readonly __tsonic_iface_System_Collections_IDictionaryEnumerator: never;
|
|
465
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
466
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
467
|
+
|
|
388
468
|
Current: KeyValuePair_2<TKey, TValue>;
|
|
389
469
|
MoveNext(): boolean;
|
|
390
470
|
Reset(): void;
|
|
@@ -406,6 +486,12 @@ export type OrderedDictionary_2_Enumerator<TKey, TValue> = OrderedDictionary_2_E
|
|
|
406
486
|
|
|
407
487
|
|
|
408
488
|
export interface OrderedDictionary_2_KeyCollection_Enumerator$instance<TKey, TValue> {
|
|
489
|
+
readonly __tsonic_type_System_Collections_Generic_OrderedDictionary_2_KeyCollection_Enumerator: never;
|
|
490
|
+
|
|
491
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
492
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
493
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
494
|
+
|
|
409
495
|
readonly Current: TKey;
|
|
410
496
|
MoveNext(): boolean;
|
|
411
497
|
Reset(): void;
|
|
@@ -426,6 +512,12 @@ export type OrderedDictionary_2_KeyCollection_Enumerator<TKey, TValue> = Ordered
|
|
|
426
512
|
|
|
427
513
|
|
|
428
514
|
export interface OrderedDictionary_2_ValueCollection_Enumerator$instance<TKey, TValue> {
|
|
515
|
+
readonly __tsonic_type_System_Collections_Generic_OrderedDictionary_2_ValueCollection_Enumerator: never;
|
|
516
|
+
|
|
517
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
518
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
519
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
520
|
+
|
|
429
521
|
readonly Current: TValue;
|
|
430
522
|
MoveNext(): boolean;
|
|
431
523
|
Reset(): void;
|
|
@@ -446,6 +538,12 @@ export type OrderedDictionary_2_ValueCollection_Enumerator<TKey, TValue> = Order
|
|
|
446
538
|
|
|
447
539
|
|
|
448
540
|
export interface PriorityQueue_2_UnorderedItemsCollection_Enumerator$instance<TElement, TPriority> extends IDisposable {
|
|
541
|
+
readonly __tsonic_type_System_Collections_Generic_PriorityQueue_2_UnorderedItemsCollection_Enumerator: never;
|
|
542
|
+
|
|
543
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
544
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
545
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
546
|
+
|
|
449
547
|
readonly Current: ValueTuple_2<TElement, TPriority>;
|
|
450
548
|
Dispose(): void;
|
|
451
549
|
MoveNext(): boolean;
|
|
@@ -467,6 +565,12 @@ export type PriorityQueue_2_UnorderedItemsCollection_Enumerator<TElement, TPrior
|
|
|
467
565
|
|
|
468
566
|
|
|
469
567
|
export interface Queue_1_Enumerator$instance<T> extends IDisposable {
|
|
568
|
+
readonly __tsonic_type_System_Collections_Generic_Queue_1_Enumerator: never;
|
|
569
|
+
|
|
570
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
571
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
572
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
573
|
+
|
|
470
574
|
readonly Current: T;
|
|
471
575
|
Dispose(): void;
|
|
472
576
|
MoveNext(): boolean;
|
|
@@ -488,6 +592,13 @@ export type Queue_1_Enumerator<T> = Queue_1_Enumerator$instance<T> & __Queue_1_E
|
|
|
488
592
|
|
|
489
593
|
|
|
490
594
|
export interface SortedDictionary_2_Enumerator$instance<TKey, TValue> extends IDisposable {
|
|
595
|
+
readonly __tsonic_type_System_Collections_Generic_SortedDictionary_2_Enumerator: never;
|
|
596
|
+
|
|
597
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
598
|
+
readonly __tsonic_iface_System_Collections_IDictionaryEnumerator: never;
|
|
599
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
600
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
601
|
+
|
|
491
602
|
readonly Current: KeyValuePair_2<TKey, TValue>;
|
|
492
603
|
Dispose(): void;
|
|
493
604
|
MoveNext(): boolean;
|
|
@@ -510,6 +621,12 @@ export type SortedDictionary_2_Enumerator<TKey, TValue> = SortedDictionary_2_Enu
|
|
|
510
621
|
|
|
511
622
|
|
|
512
623
|
export interface SortedDictionary_2_KeyCollection_Enumerator$instance<TKey, TValue> extends IDisposable {
|
|
624
|
+
readonly __tsonic_type_System_Collections_Generic_SortedDictionary_2_KeyCollection_Enumerator: never;
|
|
625
|
+
|
|
626
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
627
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
628
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
629
|
+
|
|
513
630
|
readonly Current: TKey;
|
|
514
631
|
Dispose(): void;
|
|
515
632
|
MoveNext(): boolean;
|
|
@@ -531,6 +648,12 @@ export type SortedDictionary_2_KeyCollection_Enumerator<TKey, TValue> = SortedDi
|
|
|
531
648
|
|
|
532
649
|
|
|
533
650
|
export interface SortedDictionary_2_ValueCollection_Enumerator$instance<TKey, TValue> extends IDisposable {
|
|
651
|
+
readonly __tsonic_type_System_Collections_Generic_SortedDictionary_2_ValueCollection_Enumerator: never;
|
|
652
|
+
|
|
653
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
654
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
655
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
656
|
+
|
|
534
657
|
readonly Current: TValue;
|
|
535
658
|
Dispose(): void;
|
|
536
659
|
MoveNext(): boolean;
|
|
@@ -551,7 +674,15 @@ export interface __SortedDictionary_2_ValueCollection_Enumerator$views<TKey, TVa
|
|
|
551
674
|
export type SortedDictionary_2_ValueCollection_Enumerator<TKey, TValue> = SortedDictionary_2_ValueCollection_Enumerator$instance<TKey, TValue> & __SortedDictionary_2_ValueCollection_Enumerator$views<TKey, TValue>;
|
|
552
675
|
|
|
553
676
|
|
|
554
|
-
export interface SortedSet_1_Enumerator$instance<T> extends IDisposable {
|
|
677
|
+
export interface SortedSet_1_Enumerator$instance<T> extends IDisposable, System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
678
|
+
readonly __tsonic_type_System_Collections_Generic_SortedSet_1_Enumerator: never;
|
|
679
|
+
|
|
680
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
681
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
682
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
683
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
684
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
685
|
+
|
|
555
686
|
readonly Current: T;
|
|
556
687
|
Dispose(): void;
|
|
557
688
|
MoveNext(): boolean;
|
|
@@ -571,12 +702,16 @@ export interface __SortedSet_1_Enumerator$views<T> {
|
|
|
571
702
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
572
703
|
}
|
|
573
704
|
|
|
574
|
-
export interface SortedSet_1_Enumerator$instance<T> extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
575
|
-
|
|
576
705
|
export type SortedSet_1_Enumerator<T> = SortedSet_1_Enumerator$instance<T> & __SortedSet_1_Enumerator$views<T>;
|
|
577
706
|
|
|
578
707
|
|
|
579
708
|
export interface Stack_1_Enumerator$instance<T> extends IDisposable {
|
|
709
|
+
readonly __tsonic_type_System_Collections_Generic_Stack_1_Enumerator: never;
|
|
710
|
+
|
|
711
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
712
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
713
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
714
|
+
|
|
580
715
|
readonly Current: T;
|
|
581
716
|
Dispose(): void;
|
|
582
717
|
MoveNext(): boolean;
|
|
@@ -598,6 +733,11 @@ export type Stack_1_Enumerator<T> = Stack_1_Enumerator$instance<T> & __Stack_1_E
|
|
|
598
733
|
|
|
599
734
|
|
|
600
735
|
export interface ByteEqualityComparer$instance extends EqualityComparer_1$instance<System_Internal.Byte> {
|
|
736
|
+
readonly __tsonic_type_System_Collections_Generic_ByteEqualityComparer: never;
|
|
737
|
+
|
|
738
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
739
|
+
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
740
|
+
|
|
601
741
|
Equals(x: unknown, y: unknown): boolean;
|
|
602
742
|
GetHashCode(obj: unknown): int;
|
|
603
743
|
}
|
|
@@ -616,7 +756,12 @@ export interface __ByteEqualityComparer$views {
|
|
|
616
756
|
export type ByteEqualityComparer = ByteEqualityComparer$instance & __ByteEqualityComparer$views;
|
|
617
757
|
|
|
618
758
|
|
|
619
|
-
export interface Comparer_1$instance<T> {
|
|
759
|
+
export interface Comparer_1$instance<T> extends IComparer_1$instance<T> {
|
|
760
|
+
readonly __tsonic_type_System_Collections_Generic_Comparer_1: never;
|
|
761
|
+
|
|
762
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
763
|
+
readonly __tsonic_iface_System_Collections_IComparer: never;
|
|
764
|
+
|
|
620
765
|
Compare(x: T, y: T): int;
|
|
621
766
|
}
|
|
622
767
|
|
|
@@ -632,12 +777,23 @@ export interface __Comparer_1$views<T> {
|
|
|
632
777
|
As_IComparer(): System_Collections_Internal.IComparer$instance;
|
|
633
778
|
}
|
|
634
779
|
|
|
635
|
-
export interface Comparer_1$instance<T> extends IComparer_1$instance<T> {}
|
|
636
|
-
|
|
637
780
|
export type Comparer_1<T> = Comparer_1$instance<T> & __Comparer_1$views<T>;
|
|
638
781
|
|
|
639
782
|
|
|
640
|
-
export interface Dictionary_2$instance<TKey, TValue> {
|
|
783
|
+
export interface Dictionary_2$instance<TKey, TValue> extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
784
|
+
readonly __tsonic_type_System_Collections_Generic_Dictionary_2: never;
|
|
785
|
+
|
|
786
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
787
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
788
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
789
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
790
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyDictionary_2: never;
|
|
791
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
792
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
793
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
794
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
795
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
796
|
+
|
|
641
797
|
readonly Capacity: int;
|
|
642
798
|
readonly Comparer: IEqualityComparer_1<TKey>;
|
|
643
799
|
readonly Count: int;
|
|
@@ -688,12 +844,18 @@ export interface __Dictionary_2$views<TKey, TValue> {
|
|
|
688
844
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
689
845
|
}
|
|
690
846
|
|
|
691
|
-
export interface Dictionary_2$instance<TKey, TValue> extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
692
|
-
|
|
693
847
|
export type Dictionary_2<TKey, TValue> = Dictionary_2$instance<TKey, TValue> & __Dictionary_2$views<TKey, TValue>;
|
|
694
848
|
|
|
695
849
|
|
|
696
850
|
export interface Dictionary_2_KeyCollection$instance<TKey, TValue> {
|
|
851
|
+
readonly __tsonic_type_System_Collections_Generic_Dictionary_2_KeyCollection: never;
|
|
852
|
+
|
|
853
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
854
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
855
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
856
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
857
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
858
|
+
|
|
697
859
|
readonly Count: int;
|
|
698
860
|
Contains(item: TKey): boolean;
|
|
699
861
|
CopyTo(array: TKey[], index: int): void;
|
|
@@ -718,6 +880,14 @@ export type Dictionary_2_KeyCollection<TKey, TValue> = Dictionary_2_KeyCollectio
|
|
|
718
880
|
|
|
719
881
|
|
|
720
882
|
export interface Dictionary_2_ValueCollection$instance<TKey, TValue> {
|
|
883
|
+
readonly __tsonic_type_System_Collections_Generic_Dictionary_2_ValueCollection: never;
|
|
884
|
+
|
|
885
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
886
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
887
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
888
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
889
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
890
|
+
|
|
721
891
|
readonly Count: int;
|
|
722
892
|
CopyTo(array: TValue[], index: int): void;
|
|
723
893
|
GetEnumerator(): Dictionary_2_ValueCollection_Enumerator<TKey, TValue>;
|
|
@@ -740,7 +910,13 @@ export interface __Dictionary_2_ValueCollection$views<TKey, TValue> {
|
|
|
740
910
|
export type Dictionary_2_ValueCollection<TKey, TValue> = Dictionary_2_ValueCollection$instance<TKey, TValue> & __Dictionary_2_ValueCollection$views<TKey, TValue>;
|
|
741
911
|
|
|
742
912
|
|
|
743
|
-
export interface EnumEqualityComparer_1$instance<T extends number> extends EqualityComparer_1$instance<T
|
|
913
|
+
export interface EnumEqualityComparer_1$instance<T extends number> extends EqualityComparer_1$instance<T>, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
914
|
+
readonly __tsonic_type_System_Collections_Generic_EnumEqualityComparer_1: never;
|
|
915
|
+
|
|
916
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
917
|
+
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
918
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
919
|
+
|
|
744
920
|
Equals(x: T, y: T): boolean;
|
|
745
921
|
Equals(x: unknown, y: unknown): boolean;
|
|
746
922
|
GetHashCode(obj: T): int;
|
|
@@ -760,12 +936,15 @@ export interface __EnumEqualityComparer_1$views<T extends number & unknown> {
|
|
|
760
936
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
761
937
|
}
|
|
762
938
|
|
|
763
|
-
export interface EnumEqualityComparer_1$instance<T extends number & unknown> extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
764
|
-
|
|
765
939
|
export type EnumEqualityComparer_1<T extends number> = EnumEqualityComparer_1$instance<T> & __EnumEqualityComparer_1$views<T>;
|
|
766
940
|
|
|
767
941
|
|
|
768
942
|
export interface EqualityComparer_1$instance<T> {
|
|
943
|
+
readonly __tsonic_type_System_Collections_Generic_EqualityComparer_1: never;
|
|
944
|
+
|
|
945
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
946
|
+
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
947
|
+
|
|
769
948
|
Equals(x: T, y: T): boolean;
|
|
770
949
|
GetHashCode(obj: T): int;
|
|
771
950
|
}
|
|
@@ -786,6 +965,11 @@ export type EqualityComparer_1<T> = EqualityComparer_1$instance<T> & __EqualityC
|
|
|
786
965
|
|
|
787
966
|
|
|
788
967
|
export interface GenericComparer_1$instance<T extends (IComparable_1<T> | number | string | boolean)> extends Comparer_1$instance<T> {
|
|
968
|
+
readonly __tsonic_type_System_Collections_Generic_GenericComparer_1: never;
|
|
969
|
+
|
|
970
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
971
|
+
readonly __tsonic_iface_System_Collections_IComparer: never;
|
|
972
|
+
|
|
789
973
|
Compare(x: T, y: T): int;
|
|
790
974
|
Compare(x: unknown, y: unknown): int;
|
|
791
975
|
Equals(obj: unknown): boolean;
|
|
@@ -807,6 +991,11 @@ export type GenericComparer_1<T extends (IComparable_1<T> | number | string | bo
|
|
|
807
991
|
|
|
808
992
|
|
|
809
993
|
export interface GenericEqualityComparer_1$instance<T extends (IEquatable_1<T> | number | string | boolean)> extends EqualityComparer_1$instance<T> {
|
|
994
|
+
readonly __tsonic_type_System_Collections_Generic_GenericEqualityComparer_1: never;
|
|
995
|
+
|
|
996
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
997
|
+
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
998
|
+
|
|
810
999
|
Equals(x: T, y: T): boolean;
|
|
811
1000
|
Equals(x: unknown, y: unknown): boolean;
|
|
812
1001
|
GetHashCode(obj: T): int;
|
|
@@ -827,7 +1016,18 @@ export interface __GenericEqualityComparer_1$views<T extends (IEquatable_1<T> |
|
|
|
827
1016
|
export type GenericEqualityComparer_1<T extends (IEquatable_1<T> | number | string | boolean)> = GenericEqualityComparer_1$instance<T> & __GenericEqualityComparer_1$views<T>;
|
|
828
1017
|
|
|
829
1018
|
|
|
830
|
-
export interface HashSet_1$instance<T> {
|
|
1019
|
+
export interface HashSet_1$instance<T> extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1020
|
+
readonly __tsonic_type_System_Collections_Generic_HashSet_1: never;
|
|
1021
|
+
|
|
1022
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1023
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1024
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1025
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlySet_1: never;
|
|
1026
|
+
readonly __tsonic_iface_System_Collections_Generic_ISet_1: never;
|
|
1027
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1028
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
1029
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1030
|
+
|
|
831
1031
|
readonly Capacity: int;
|
|
832
1032
|
readonly Comparer: IEqualityComparer_1<T>;
|
|
833
1033
|
readonly Count: int;
|
|
@@ -883,12 +1083,14 @@ export interface __HashSet_1$views<T> {
|
|
|
883
1083
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
884
1084
|
}
|
|
885
1085
|
|
|
886
|
-
export interface HashSet_1$instance<T> extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
887
|
-
|
|
888
1086
|
export type HashSet_1<T> = HashSet_1$instance<T> & __HashSet_1$views<T>;
|
|
889
1087
|
|
|
890
1088
|
|
|
891
1089
|
export interface KeyNotFoundException$instance extends SystemException {
|
|
1090
|
+
readonly __tsonic_type_System_Collections_Generic_KeyNotFoundException: never;
|
|
1091
|
+
|
|
1092
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1093
|
+
|
|
892
1094
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
893
1095
|
}
|
|
894
1096
|
|
|
@@ -907,7 +1109,17 @@ export interface __KeyNotFoundException$views {
|
|
|
907
1109
|
export type KeyNotFoundException = KeyNotFoundException$instance & __KeyNotFoundException$views;
|
|
908
1110
|
|
|
909
1111
|
|
|
910
|
-
export interface LinkedList_1$instance<T> {
|
|
1112
|
+
export interface LinkedList_1$instance<T> extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1113
|
+
readonly __tsonic_type_System_Collections_Generic_LinkedList_1: never;
|
|
1114
|
+
|
|
1115
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1116
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1117
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1118
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1119
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1120
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
1121
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1122
|
+
|
|
911
1123
|
readonly Count: int;
|
|
912
1124
|
readonly First: LinkedListNode_1<T> | undefined;
|
|
913
1125
|
readonly Last: LinkedListNode_1<T> | undefined;
|
|
@@ -950,12 +1162,12 @@ export interface __LinkedList_1$views<T> {
|
|
|
950
1162
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
951
1163
|
}
|
|
952
1164
|
|
|
953
|
-
export interface LinkedList_1$instance<T> extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
954
|
-
|
|
955
1165
|
export type LinkedList_1<T> = LinkedList_1$instance<T> & __LinkedList_1$views<T>;
|
|
956
1166
|
|
|
957
1167
|
|
|
958
1168
|
export interface LinkedListNode_1$instance<T> {
|
|
1169
|
+
readonly __tsonic_type_System_Collections_Generic_LinkedListNode_1: never;
|
|
1170
|
+
|
|
959
1171
|
readonly List: LinkedList_1<T> | undefined;
|
|
960
1172
|
readonly Next: LinkedListNode_1<T> | undefined;
|
|
961
1173
|
readonly Previous: LinkedListNode_1<T> | undefined;
|
|
@@ -972,6 +1184,17 @@ export const LinkedListNode_1: {
|
|
|
972
1184
|
export type LinkedListNode_1<T> = LinkedListNode_1$instance<T>;
|
|
973
1185
|
|
|
974
1186
|
export interface List_1$instance<T> {
|
|
1187
|
+
readonly __tsonic_type_System_Collections_Generic_List_1: never;
|
|
1188
|
+
|
|
1189
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1190
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1191
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
1192
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1193
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1194
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1195
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1196
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
1197
|
+
|
|
975
1198
|
Capacity: int;
|
|
976
1199
|
readonly Count: int;
|
|
977
1200
|
[index: number]: T;
|
|
@@ -1046,7 +1269,12 @@ export interface __List_1$views<T> {
|
|
|
1046
1269
|
export type List_1<T> = List_1$instance<T> & __List_1$views<T>;
|
|
1047
1270
|
|
|
1048
1271
|
|
|
1049
|
-
export interface NonRandomizedStringEqualityComparer$instance {
|
|
1272
|
+
export interface NonRandomizedStringEqualityComparer$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1273
|
+
readonly __tsonic_type_System_Collections_Generic_NonRandomizedStringEqualityComparer: never;
|
|
1274
|
+
|
|
1275
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
1276
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1277
|
+
|
|
1050
1278
|
Equals(x: string, y: string): boolean;
|
|
1051
1279
|
GetHashCode(obj: string): int;
|
|
1052
1280
|
GetUnderlyingEqualityComparer(): IEqualityComparer_1<string | undefined>;
|
|
@@ -1063,12 +1291,16 @@ export interface __NonRandomizedStringEqualityComparer$views {
|
|
|
1063
1291
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
1064
1292
|
}
|
|
1065
1293
|
|
|
1066
|
-
export interface NonRandomizedStringEqualityComparer$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1067
|
-
|
|
1068
1294
|
export type NonRandomizedStringEqualityComparer = NonRandomizedStringEqualityComparer$instance & __NonRandomizedStringEqualityComparer$views;
|
|
1069
1295
|
|
|
1070
1296
|
|
|
1071
|
-
export interface NullableComparer_1$instance<T extends unknown> extends Comparer_1$instance<Nullable_1<T
|
|
1297
|
+
export interface NullableComparer_1$instance<T extends unknown> extends Comparer_1$instance<Nullable_1<T>>, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1298
|
+
readonly __tsonic_type_System_Collections_Generic_NullableComparer_1: never;
|
|
1299
|
+
|
|
1300
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
1301
|
+
readonly __tsonic_iface_System_Collections_IComparer: never;
|
|
1302
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1303
|
+
|
|
1072
1304
|
Compare(x: unknown, y: unknown): int;
|
|
1073
1305
|
Equals(obj: unknown): boolean;
|
|
1074
1306
|
GetHashCode(): int;
|
|
@@ -1087,12 +1319,16 @@ export interface __NullableComparer_1$views<T extends unknown> {
|
|
|
1087
1319
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
1088
1320
|
}
|
|
1089
1321
|
|
|
1090
|
-
export interface NullableComparer_1$instance<T extends unknown> extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1091
|
-
|
|
1092
1322
|
export type NullableComparer_1<T> = NullableComparer_1$instance<T> & __NullableComparer_1$views<T>;
|
|
1093
1323
|
|
|
1094
1324
|
|
|
1095
|
-
export interface NullableEqualityComparer_1$instance<T extends unknown> extends EqualityComparer_1$instance<Nullable_1<T
|
|
1325
|
+
export interface NullableEqualityComparer_1$instance<T extends unknown> extends EqualityComparer_1$instance<Nullable_1<T>>, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1326
|
+
readonly __tsonic_type_System_Collections_Generic_NullableEqualityComparer_1: never;
|
|
1327
|
+
|
|
1328
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
1329
|
+
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
1330
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1331
|
+
|
|
1096
1332
|
Equals(x: unknown, y: unknown): boolean;
|
|
1097
1333
|
GetHashCode(obj: unknown): int;
|
|
1098
1334
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1110,12 +1346,15 @@ export interface __NullableEqualityComparer_1$views<T extends unknown> {
|
|
|
1110
1346
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
1111
1347
|
}
|
|
1112
1348
|
|
|
1113
|
-
export interface NullableEqualityComparer_1$instance<T extends unknown> extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1114
|
-
|
|
1115
1349
|
export type NullableEqualityComparer_1<T> = NullableEqualityComparer_1$instance<T> & __NullableEqualityComparer_1$views<T>;
|
|
1116
1350
|
|
|
1117
1351
|
|
|
1118
1352
|
export interface ObjectComparer_1$instance<T> extends Comparer_1$instance<T> {
|
|
1353
|
+
readonly __tsonic_type_System_Collections_Generic_ObjectComparer_1: never;
|
|
1354
|
+
|
|
1355
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
1356
|
+
readonly __tsonic_iface_System_Collections_IComparer: never;
|
|
1357
|
+
|
|
1119
1358
|
Compare(x: T, y: T): int;
|
|
1120
1359
|
Compare(x: unknown, y: unknown): int;
|
|
1121
1360
|
Equals(obj: unknown): boolean;
|
|
@@ -1137,6 +1376,11 @@ export type ObjectComparer_1<T> = ObjectComparer_1$instance<T> & __ObjectCompare
|
|
|
1137
1376
|
|
|
1138
1377
|
|
|
1139
1378
|
export interface ObjectEqualityComparer_1$instance<T> extends EqualityComparer_1$instance<T> {
|
|
1379
|
+
readonly __tsonic_type_System_Collections_Generic_ObjectEqualityComparer_1: never;
|
|
1380
|
+
|
|
1381
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
1382
|
+
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
1383
|
+
|
|
1140
1384
|
Equals(x: T, y: T): boolean;
|
|
1141
1385
|
Equals(x: unknown, y: unknown): boolean;
|
|
1142
1386
|
GetHashCode(obj: T): int;
|
|
@@ -1158,6 +1402,20 @@ export type ObjectEqualityComparer_1<T> = ObjectEqualityComparer_1$instance<T> &
|
|
|
1158
1402
|
|
|
1159
1403
|
|
|
1160
1404
|
export interface OrderedDictionary_2$instance<TKey, TValue> {
|
|
1405
|
+
readonly __tsonic_type_System_Collections_Generic_OrderedDictionary_2: never;
|
|
1406
|
+
|
|
1407
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1408
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
1409
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1410
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
1411
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1412
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyDictionary_2: never;
|
|
1413
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1414
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1415
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
1416
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1417
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
1418
|
+
|
|
1161
1419
|
readonly Capacity: int;
|
|
1162
1420
|
readonly Comparer: IEqualityComparer_1<TKey>;
|
|
1163
1421
|
readonly Count: int;
|
|
@@ -1216,6 +1474,17 @@ export type OrderedDictionary_2<TKey, TValue> = OrderedDictionary_2$instance<TKe
|
|
|
1216
1474
|
|
|
1217
1475
|
|
|
1218
1476
|
export interface OrderedDictionary_2_KeyCollection$instance<TKey, TValue> {
|
|
1477
|
+
readonly __tsonic_type_System_Collections_Generic_OrderedDictionary_2_KeyCollection: never;
|
|
1478
|
+
|
|
1479
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1480
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1481
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
1482
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1483
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1484
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1485
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1486
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
1487
|
+
|
|
1219
1488
|
readonly Count: int;
|
|
1220
1489
|
Contains(key: TKey): boolean;
|
|
1221
1490
|
CopyTo(array: TKey[], arrayIndex: int): void;
|
|
@@ -1241,6 +1510,17 @@ export type OrderedDictionary_2_KeyCollection<TKey, TValue> = OrderedDictionary_
|
|
|
1241
1510
|
|
|
1242
1511
|
|
|
1243
1512
|
export interface OrderedDictionary_2_ValueCollection$instance<TKey, TValue> {
|
|
1513
|
+
readonly __tsonic_type_System_Collections_Generic_OrderedDictionary_2_ValueCollection: never;
|
|
1514
|
+
|
|
1515
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1516
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1517
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
1518
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1519
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1520
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1521
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1522
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
1523
|
+
|
|
1244
1524
|
readonly Count: int;
|
|
1245
1525
|
CopyTo(array: TValue[], arrayIndex: int): void;
|
|
1246
1526
|
GetEnumerator(): OrderedDictionary_2_ValueCollection_Enumerator<TKey, TValue>;
|
|
@@ -1265,6 +1545,8 @@ export type OrderedDictionary_2_ValueCollection<TKey, TValue> = OrderedDictionar
|
|
|
1265
1545
|
|
|
1266
1546
|
|
|
1267
1547
|
export interface PriorityQueue_2$instance<TElement, TPriority> {
|
|
1548
|
+
readonly __tsonic_type_System_Collections_Generic_PriorityQueue_2: never;
|
|
1549
|
+
|
|
1268
1550
|
readonly Capacity: int;
|
|
1269
1551
|
readonly Comparer: IComparer_1<TPriority>;
|
|
1270
1552
|
readonly Count: int;
|
|
@@ -1298,6 +1580,13 @@ export const PriorityQueue_2: {
|
|
|
1298
1580
|
export type PriorityQueue_2<TElement, TPriority> = PriorityQueue_2$instance<TElement, TPriority>;
|
|
1299
1581
|
|
|
1300
1582
|
export interface PriorityQueue_2_UnorderedItemsCollection$instance<TElement, TPriority> {
|
|
1583
|
+
readonly __tsonic_type_System_Collections_Generic_PriorityQueue_2_UnorderedItemsCollection: never;
|
|
1584
|
+
|
|
1585
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1586
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1587
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1588
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1589
|
+
|
|
1301
1590
|
readonly Count: int;
|
|
1302
1591
|
GetEnumerator(): PriorityQueue_2_UnorderedItemsCollection_Enumerator<TElement, TPriority>;
|
|
1303
1592
|
}
|
|
@@ -1318,6 +1607,13 @@ export type PriorityQueue_2_UnorderedItemsCollection<TElement, TPriority> = Prio
|
|
|
1318
1607
|
|
|
1319
1608
|
|
|
1320
1609
|
export interface Queue_1$instance<T> {
|
|
1610
|
+
readonly __tsonic_type_System_Collections_Generic_Queue_1: never;
|
|
1611
|
+
|
|
1612
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1613
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1614
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1615
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1616
|
+
|
|
1321
1617
|
readonly Capacity: int;
|
|
1322
1618
|
readonly Count: int;
|
|
1323
1619
|
Clear(): void;
|
|
@@ -1354,6 +1650,11 @@ export type Queue_1<T> = Queue_1$instance<T> & __Queue_1$views<T>;
|
|
|
1354
1650
|
|
|
1355
1651
|
|
|
1356
1652
|
export interface ReferenceEqualityComparer$instance {
|
|
1653
|
+
readonly __tsonic_type_System_Collections_Generic_ReferenceEqualityComparer: never;
|
|
1654
|
+
|
|
1655
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
1656
|
+
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
1657
|
+
|
|
1357
1658
|
Equals(x: unknown, y: unknown): boolean;
|
|
1358
1659
|
GetHashCode(obj: unknown): int;
|
|
1359
1660
|
}
|
|
@@ -1373,6 +1674,17 @@ export type ReferenceEqualityComparer = ReferenceEqualityComparer$instance & __R
|
|
|
1373
1674
|
|
|
1374
1675
|
|
|
1375
1676
|
export interface SortedDictionary_2$instance<TKey, TValue> {
|
|
1677
|
+
readonly __tsonic_type_System_Collections_Generic_SortedDictionary_2: never;
|
|
1678
|
+
|
|
1679
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1680
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
1681
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1682
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1683
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyDictionary_2: never;
|
|
1684
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1685
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
1686
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1687
|
+
|
|
1376
1688
|
readonly Comparer: IComparer_1<TKey>;
|
|
1377
1689
|
readonly Count: int;
|
|
1378
1690
|
Item: TValue;
|
|
@@ -1412,6 +1724,14 @@ export type SortedDictionary_2<TKey, TValue> = SortedDictionary_2$instance<TKey,
|
|
|
1412
1724
|
|
|
1413
1725
|
|
|
1414
1726
|
export interface SortedDictionary_2_KeyCollection$instance<TKey, TValue> {
|
|
1727
|
+
readonly __tsonic_type_System_Collections_Generic_SortedDictionary_2_KeyCollection: never;
|
|
1728
|
+
|
|
1729
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1730
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1731
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1732
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1733
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1734
|
+
|
|
1415
1735
|
readonly Count: int;
|
|
1416
1736
|
Contains(item: TKey): boolean;
|
|
1417
1737
|
CopyTo(array: TKey[], index: int): void;
|
|
@@ -1436,6 +1756,11 @@ export type SortedDictionary_2_KeyCollection<TKey, TValue> = SortedDictionary_2_
|
|
|
1436
1756
|
|
|
1437
1757
|
|
|
1438
1758
|
export interface SortedDictionary_2_KeyValuePairComparer$instance<TKey, TValue> extends Comparer_1$instance<KeyValuePair_2<TKey, TValue>> {
|
|
1759
|
+
readonly __tsonic_type_System_Collections_Generic_SortedDictionary_2_KeyValuePairComparer: never;
|
|
1760
|
+
|
|
1761
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
1762
|
+
readonly __tsonic_iface_System_Collections_IComparer: never;
|
|
1763
|
+
|
|
1439
1764
|
Compare(x: unknown, y: unknown): int;
|
|
1440
1765
|
Equals(obj: unknown): boolean;
|
|
1441
1766
|
GetHashCode(): int;
|
|
@@ -1456,6 +1781,14 @@ export type SortedDictionary_2_KeyValuePairComparer<TKey, TValue> = SortedDictio
|
|
|
1456
1781
|
|
|
1457
1782
|
|
|
1458
1783
|
export interface SortedDictionary_2_ValueCollection$instance<TKey, TValue> {
|
|
1784
|
+
readonly __tsonic_type_System_Collections_Generic_SortedDictionary_2_ValueCollection: never;
|
|
1785
|
+
|
|
1786
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1787
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1788
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1789
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1790
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1791
|
+
|
|
1459
1792
|
readonly Count: int;
|
|
1460
1793
|
CopyTo(array: TValue[], index: int): void;
|
|
1461
1794
|
GetEnumerator(): SortedDictionary_2_ValueCollection_Enumerator<TKey, TValue>;
|
|
@@ -1479,6 +1812,17 @@ export type SortedDictionary_2_ValueCollection<TKey, TValue> = SortedDictionary_
|
|
|
1479
1812
|
|
|
1480
1813
|
|
|
1481
1814
|
export interface SortedList_2$instance<TKey, TValue> {
|
|
1815
|
+
readonly __tsonic_type_System_Collections_Generic_SortedList_2: never;
|
|
1816
|
+
|
|
1817
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1818
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
1819
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1820
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1821
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyDictionary_2: never;
|
|
1822
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1823
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
1824
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1825
|
+
|
|
1482
1826
|
Capacity: int;
|
|
1483
1827
|
readonly Comparer: IComparer_1<TKey>;
|
|
1484
1828
|
readonly Count: int;
|
|
@@ -1527,6 +1871,14 @@ export type SortedList_2<TKey, TValue> = SortedList_2$instance<TKey, TValue> & _
|
|
|
1527
1871
|
|
|
1528
1872
|
|
|
1529
1873
|
export interface SortedList_2_KeyList$instance<TKey, TValue> {
|
|
1874
|
+
readonly __tsonic_type_System_Collections_Generic_SortedList_2_KeyList: never;
|
|
1875
|
+
|
|
1876
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1877
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1878
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
1879
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1880
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1881
|
+
|
|
1530
1882
|
readonly Count: int;
|
|
1531
1883
|
readonly IsReadOnly: boolean;
|
|
1532
1884
|
[index: number]: TKey;
|
|
@@ -1558,6 +1910,14 @@ export type SortedList_2_KeyList<TKey, TValue> = SortedList_2_KeyList$instance<T
|
|
|
1558
1910
|
|
|
1559
1911
|
|
|
1560
1912
|
export interface SortedList_2_ValueList$instance<TKey, TValue> {
|
|
1913
|
+
readonly __tsonic_type_System_Collections_Generic_SortedList_2_ValueList: never;
|
|
1914
|
+
|
|
1915
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1916
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1917
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
1918
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1919
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1920
|
+
|
|
1561
1921
|
readonly Count: int;
|
|
1562
1922
|
readonly IsReadOnly: boolean;
|
|
1563
1923
|
[index: number]: TValue;
|
|
@@ -1588,7 +1948,19 @@ export interface __SortedList_2_ValueList$views<TKey, TValue> {
|
|
|
1588
1948
|
export type SortedList_2_ValueList<TKey, TValue> = SortedList_2_ValueList$instance<TKey, TValue> & __SortedList_2_ValueList$views<TKey, TValue>;
|
|
1589
1949
|
|
|
1590
1950
|
|
|
1591
|
-
export interface SortedSet_1$instance<T> {
|
|
1951
|
+
export interface SortedSet_1$instance<T> extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1952
|
+
readonly __tsonic_type_System_Collections_Generic_SortedSet_1: never;
|
|
1953
|
+
|
|
1954
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1955
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1956
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1957
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlySet_1: never;
|
|
1958
|
+
readonly __tsonic_iface_System_Collections_Generic_ISet_1: never;
|
|
1959
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1960
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1961
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
1962
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1963
|
+
|
|
1592
1964
|
readonly Comparer: IComparer_1<T>;
|
|
1593
1965
|
readonly Count: int;
|
|
1594
1966
|
readonly Max: T | undefined;
|
|
@@ -1642,12 +2014,17 @@ export interface __SortedSet_1$views<T> {
|
|
|
1642
2014
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
1643
2015
|
}
|
|
1644
2016
|
|
|
1645
|
-
export interface SortedSet_1$instance<T> extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1646
|
-
|
|
1647
2017
|
export type SortedSet_1<T> = SortedSet_1$instance<T> & __SortedSet_1$views<T>;
|
|
1648
2018
|
|
|
1649
2019
|
|
|
1650
2020
|
export interface Stack_1$instance<T> {
|
|
2021
|
+
readonly __tsonic_type_System_Collections_Generic_Stack_1: never;
|
|
2022
|
+
|
|
2023
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2024
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2025
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
2026
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2027
|
+
|
|
1651
2028
|
readonly Capacity: int;
|
|
1652
2029
|
readonly Count: int;
|
|
1653
2030
|
Clear(): void;
|
|
@@ -1684,6 +2061,18 @@ export type Stack_1<T> = Stack_1$instance<T> & __Stack_1$views<T>;
|
|
|
1684
2061
|
|
|
1685
2062
|
|
|
1686
2063
|
export interface TreeSet_1$instance<T> extends SortedSet_1$instance<T> {
|
|
2064
|
+
readonly __tsonic_type_System_Collections_Generic_TreeSet_1: never;
|
|
2065
|
+
|
|
2066
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
2067
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2068
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2069
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlySet_1: never;
|
|
2070
|
+
readonly __tsonic_iface_System_Collections_Generic_ISet_1: never;
|
|
2071
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
2072
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2073
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
2074
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2075
|
+
|
|
1687
2076
|
Add(item: T): boolean;
|
|
1688
2077
|
Add(item: T): void;
|
|
1689
2078
|
Clear(): void;
|