@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
|
@@ -17,6 +17,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
17
17
|
import type { Action_1, Array as ClrArray, Boolean as ClrBoolean, Comparison_1, Func_2, Func_3, IDisposable, IEquatable_1, Int32, Object as ClrObject, Predicate_1, Range, ReadOnlyMemory_1, ReadOnlySpan_1, Span_1, String as ClrString, Type, ValueType, Void } from "../../System/internal/index.js";
|
|
18
18
|
|
|
19
19
|
export interface IImmutableDictionary_2$instance<TKey, TValue> extends IReadOnlyDictionary_2<TKey, TValue>, IEnumerable_1<KeyValuePair_2<TKey, TValue>>, IEnumerable, IReadOnlyCollection_1<KeyValuePair_2<TKey, TValue>> {
|
|
20
|
+
readonly __tsonic_iface_System_Collections_Immutable_IImmutableDictionary_2: never;
|
|
21
|
+
|
|
20
22
|
readonly Item: TValue;
|
|
21
23
|
readonly Keys: IEnumerable_1<TKey>;
|
|
22
24
|
readonly Values: IEnumerable_1<TValue>;
|
|
@@ -38,6 +40,8 @@ export interface IImmutableDictionary_2$instance<TKey, TValue> extends IReadOnly
|
|
|
38
40
|
export type IImmutableDictionary_2<TKey, TValue> = IImmutableDictionary_2$instance<TKey, TValue>;
|
|
39
41
|
|
|
40
42
|
export interface IImmutableList_1$instance<T> extends IReadOnlyList_1<T>, IEnumerable_1<T>, IEnumerable, IReadOnlyCollection_1<T> {
|
|
43
|
+
readonly __tsonic_iface_System_Collections_Immutable_IImmutableList_1: never;
|
|
44
|
+
|
|
41
45
|
readonly [index: number]: T;
|
|
42
46
|
readonly Count: int;
|
|
43
47
|
Add(value: T): IImmutableList_1<T>;
|
|
@@ -61,6 +65,8 @@ export interface IImmutableList_1$instance<T> extends IReadOnlyList_1<T>, IEnume
|
|
|
61
65
|
export type IImmutableList_1<T> = IImmutableList_1$instance<T>;
|
|
62
66
|
|
|
63
67
|
export interface IImmutableQueue_1$instance<T> extends IEnumerable_1<T>, IEnumerable {
|
|
68
|
+
readonly __tsonic_iface_System_Collections_Immutable_IImmutableQueue_1: never;
|
|
69
|
+
|
|
64
70
|
readonly IsEmpty: boolean;
|
|
65
71
|
Clear(): IImmutableQueue_1<T>;
|
|
66
72
|
Enqueue(value: T): IImmutableQueue_1<T>;
|
|
@@ -74,6 +80,8 @@ export interface IImmutableQueue_1$instance<T> extends IEnumerable_1<T>, IEnumer
|
|
|
74
80
|
export type IImmutableQueue_1<T> = IImmutableQueue_1$instance<T>;
|
|
75
81
|
|
|
76
82
|
export interface IImmutableSet_1$instance<T> extends IReadOnlyCollection_1<T>, IEnumerable_1<T>, IEnumerable {
|
|
83
|
+
readonly __tsonic_iface_System_Collections_Immutable_IImmutableSet_1: never;
|
|
84
|
+
|
|
77
85
|
readonly Count: int;
|
|
78
86
|
Add(value: T): IImmutableSet_1<T>;
|
|
79
87
|
Clear(): IImmutableSet_1<T>;
|
|
@@ -90,6 +98,8 @@ export interface IImmutableSet_1$instance<T> extends IReadOnlyCollection_1<T>, I
|
|
|
90
98
|
export type IImmutableSet_1<T> = IImmutableSet_1$instance<T>;
|
|
91
99
|
|
|
92
100
|
export interface IImmutableStack_1$instance<T> extends IEnumerable_1<T>, IEnumerable {
|
|
101
|
+
readonly __tsonic_iface_System_Collections_Immutable_IImmutableStack_1: never;
|
|
102
|
+
|
|
93
103
|
readonly IsEmpty: boolean;
|
|
94
104
|
Clear(): IImmutableStack_1<T>;
|
|
95
105
|
GetEnumerator(): IEnumerator_1<T>;
|
|
@@ -103,6 +113,21 @@ export interface IImmutableStack_1$instance<T> extends IEnumerable_1<T>, IEnumer
|
|
|
103
113
|
export type IImmutableStack_1<T> = IImmutableStack_1$instance<T>;
|
|
104
114
|
|
|
105
115
|
export interface ImmutableArray_1$instance<T> {
|
|
116
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableArray_1: never;
|
|
117
|
+
|
|
118
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
119
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
120
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
121
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
122
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
123
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
124
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
125
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
126
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
127
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
128
|
+
readonly __tsonic_iface_System_Collections_Immutable_IImmutableList_1: never;
|
|
129
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
130
|
+
|
|
106
131
|
readonly IsDefault: boolean;
|
|
107
132
|
readonly IsDefaultOrEmpty: boolean;
|
|
108
133
|
readonly IsEmpty: boolean;
|
|
@@ -196,12 +221,12 @@ export interface __ImmutableArray_1$views<T> {
|
|
|
196
221
|
Equals(other: ImmutableArray_1<T>): boolean;
|
|
197
222
|
}
|
|
198
223
|
|
|
199
|
-
export interface ImmutableArray_1$instance<T> extends System_Collections_Internal.IStructuralComparable$instance {}
|
|
200
|
-
|
|
201
224
|
export type ImmutableArray_1<T> = ImmutableArray_1$instance<T> & __ImmutableArray_1$views<T>;
|
|
202
225
|
|
|
203
226
|
|
|
204
227
|
export interface ImmutableArray_1_Enumerator$instance<T> {
|
|
228
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableArray_1_Enumerator: never;
|
|
229
|
+
|
|
205
230
|
readonly Current: T;
|
|
206
231
|
MoveNext(): boolean;
|
|
207
232
|
}
|
|
@@ -215,6 +240,12 @@ export const ImmutableArray_1_Enumerator: {
|
|
|
215
240
|
export type ImmutableArray_1_Enumerator<T> = ImmutableArray_1_Enumerator$instance<T>;
|
|
216
241
|
|
|
217
242
|
export interface ImmutableDictionary_2_Enumerator$instance<TKey, TValue> extends IDisposable {
|
|
243
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableDictionary_2_Enumerator: never;
|
|
244
|
+
|
|
245
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
246
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
247
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
248
|
+
|
|
218
249
|
readonly Current: KeyValuePair_2<TKey, TValue>;
|
|
219
250
|
Dispose(): void;
|
|
220
251
|
MoveNext(): boolean;
|
|
@@ -236,6 +267,12 @@ export type ImmutableDictionary_2_Enumerator<TKey, TValue> = ImmutableDictionary
|
|
|
236
267
|
|
|
237
268
|
|
|
238
269
|
export interface ImmutableHashSet_1_Enumerator$instance<T> extends IDisposable {
|
|
270
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableHashSet_1_Enumerator: never;
|
|
271
|
+
|
|
272
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
273
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
274
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
275
|
+
|
|
239
276
|
readonly Current: T;
|
|
240
277
|
Dispose(): void;
|
|
241
278
|
MoveNext(): boolean;
|
|
@@ -257,6 +294,12 @@ export type ImmutableHashSet_1_Enumerator<T> = ImmutableHashSet_1_Enumerator$ins
|
|
|
257
294
|
|
|
258
295
|
|
|
259
296
|
export interface ImmutableList_1_Enumerator$instance<T> extends IDisposable {
|
|
297
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableList_1_Enumerator: never;
|
|
298
|
+
|
|
299
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
300
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
301
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
302
|
+
|
|
260
303
|
readonly Current: T;
|
|
261
304
|
Dispose(): void;
|
|
262
305
|
MoveNext(): boolean;
|
|
@@ -278,6 +321,8 @@ export type ImmutableList_1_Enumerator<T> = ImmutableList_1_Enumerator$instance<
|
|
|
278
321
|
|
|
279
322
|
|
|
280
323
|
export interface ImmutableQueue_1_Enumerator$instance<T> {
|
|
324
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableQueue_1_Enumerator: never;
|
|
325
|
+
|
|
281
326
|
readonly Current: T;
|
|
282
327
|
MoveNext(): boolean;
|
|
283
328
|
}
|
|
@@ -291,6 +336,12 @@ export const ImmutableQueue_1_Enumerator: {
|
|
|
291
336
|
export type ImmutableQueue_1_Enumerator<T> = ImmutableQueue_1_Enumerator$instance<T>;
|
|
292
337
|
|
|
293
338
|
export interface ImmutableSortedDictionary_2_Enumerator$instance<TKey, TValue> extends IDisposable {
|
|
339
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableSortedDictionary_2_Enumerator: never;
|
|
340
|
+
|
|
341
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
342
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
343
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
344
|
+
|
|
294
345
|
readonly Current: KeyValuePair_2<TKey, TValue>;
|
|
295
346
|
Dispose(): void;
|
|
296
347
|
MoveNext(): boolean;
|
|
@@ -312,6 +363,12 @@ export type ImmutableSortedDictionary_2_Enumerator<TKey, TValue> = ImmutableSort
|
|
|
312
363
|
|
|
313
364
|
|
|
314
365
|
export interface ImmutableSortedSet_1_Enumerator$instance<T> extends IDisposable {
|
|
366
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableSortedSet_1_Enumerator: never;
|
|
367
|
+
|
|
368
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
369
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
370
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
371
|
+
|
|
315
372
|
readonly Current: T;
|
|
316
373
|
Dispose(): void;
|
|
317
374
|
MoveNext(): boolean;
|
|
@@ -333,6 +390,8 @@ export type ImmutableSortedSet_1_Enumerator<T> = ImmutableSortedSet_1_Enumerator
|
|
|
333
390
|
|
|
334
391
|
|
|
335
392
|
export interface ImmutableStack_1_Enumerator$instance<T> {
|
|
393
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableStack_1_Enumerator: never;
|
|
394
|
+
|
|
336
395
|
readonly Current: T;
|
|
337
396
|
MoveNext(): boolean;
|
|
338
397
|
}
|
|
@@ -346,6 +405,15 @@ export const ImmutableStack_1_Enumerator: {
|
|
|
346
405
|
export type ImmutableStack_1_Enumerator<T> = ImmutableStack_1_Enumerator$instance<T>;
|
|
347
406
|
|
|
348
407
|
export interface ImmutableArray_1_Builder$instance<T> {
|
|
408
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableArray_1_Builder: never;
|
|
409
|
+
|
|
410
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
411
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
412
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
413
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
414
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
415
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
416
|
+
|
|
349
417
|
Capacity: int;
|
|
350
418
|
Count: int;
|
|
351
419
|
[index: number]: T;
|
|
@@ -415,6 +483,18 @@ export type ImmutableArray_1_Builder<T> = ImmutableArray_1_Builder$instance<T> &
|
|
|
415
483
|
|
|
416
484
|
|
|
417
485
|
export interface ImmutableDictionary_2$instance<TKey, TValue> {
|
|
486
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableDictionary_2: never;
|
|
487
|
+
|
|
488
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
489
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
490
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
491
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
492
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyDictionary_2: never;
|
|
493
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
494
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
495
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
496
|
+
readonly __tsonic_iface_System_Collections_Immutable_IImmutableDictionary_2: never;
|
|
497
|
+
|
|
418
498
|
readonly Count: int;
|
|
419
499
|
readonly IsEmpty: boolean;
|
|
420
500
|
readonly Item: TValue;
|
|
@@ -462,6 +542,17 @@ export type ImmutableDictionary_2<TKey, TValue> = ImmutableDictionary_2$instance
|
|
|
462
542
|
|
|
463
543
|
|
|
464
544
|
export interface ImmutableDictionary_2_Builder$instance<TKey, TValue> {
|
|
545
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableDictionary_2_Builder: never;
|
|
546
|
+
|
|
547
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
548
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
549
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
550
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
551
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyDictionary_2: never;
|
|
552
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
553
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
554
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
555
|
+
|
|
465
556
|
readonly Count: int;
|
|
466
557
|
Item: TValue;
|
|
467
558
|
KeyComparer: IEqualityComparer_1<TKey>;
|
|
@@ -506,6 +597,17 @@ export type ImmutableDictionary_2_Builder<TKey, TValue> = ImmutableDictionary_2_
|
|
|
506
597
|
|
|
507
598
|
|
|
508
599
|
export interface ImmutableHashSet_1$instance<T> {
|
|
600
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableHashSet_1: never;
|
|
601
|
+
|
|
602
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
603
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
604
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
605
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlySet_1: never;
|
|
606
|
+
readonly __tsonic_iface_System_Collections_Generic_ISet_1: never;
|
|
607
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
608
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
609
|
+
readonly __tsonic_iface_System_Collections_Immutable_IImmutableSet_1: never;
|
|
610
|
+
|
|
509
611
|
readonly Count: int;
|
|
510
612
|
readonly IsEmpty: boolean;
|
|
511
613
|
readonly KeyComparer: IEqualityComparer_1<T>;
|
|
@@ -550,6 +652,14 @@ export type ImmutableHashSet_1<T> = ImmutableHashSet_1$instance<T> & __Immutable
|
|
|
550
652
|
|
|
551
653
|
|
|
552
654
|
export interface ImmutableHashSet_1_Builder$instance<T> {
|
|
655
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableHashSet_1_Builder: never;
|
|
656
|
+
|
|
657
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
658
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
659
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
660
|
+
readonly __tsonic_iface_System_Collections_Generic_ISet_1: never;
|
|
661
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
662
|
+
|
|
553
663
|
readonly Count: int;
|
|
554
664
|
KeyComparer: IEqualityComparer_1<T>;
|
|
555
665
|
Add(item: T): boolean;
|
|
@@ -588,6 +698,18 @@ export type ImmutableHashSet_1_Builder<T> = ImmutableHashSet_1_Builder$instance<
|
|
|
588
698
|
|
|
589
699
|
|
|
590
700
|
export interface ImmutableList_1$instance<T> {
|
|
701
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableList_1: never;
|
|
702
|
+
|
|
703
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
704
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
705
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
706
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
707
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
708
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
709
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
710
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
711
|
+
readonly __tsonic_iface_System_Collections_Immutable_IImmutableList_1: never;
|
|
712
|
+
|
|
591
713
|
readonly Count: int;
|
|
592
714
|
readonly IsEmpty: boolean;
|
|
593
715
|
readonly [index: number]: T;
|
|
@@ -662,6 +784,17 @@ export type ImmutableList_1<T> = ImmutableList_1$instance<T> & __ImmutableList_1
|
|
|
662
784
|
|
|
663
785
|
|
|
664
786
|
export interface ImmutableList_1_Builder$instance<T> {
|
|
787
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableList_1_Builder: never;
|
|
788
|
+
|
|
789
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
790
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
791
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
792
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
793
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
794
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
795
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
796
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
797
|
+
|
|
665
798
|
readonly Count: int;
|
|
666
799
|
[index: number]: T;
|
|
667
800
|
Add(item: T): void;
|
|
@@ -737,6 +870,12 @@ export type ImmutableList_1_Builder<T> = ImmutableList_1_Builder$instance<T> & _
|
|
|
737
870
|
|
|
738
871
|
|
|
739
872
|
export interface ImmutableQueue_1$instance<T> {
|
|
873
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableQueue_1: never;
|
|
874
|
+
|
|
875
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
876
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
877
|
+
readonly __tsonic_iface_System_Collections_Immutable_IImmutableQueue_1: never;
|
|
878
|
+
|
|
740
879
|
readonly IsEmpty: boolean;
|
|
741
880
|
Clear(): ImmutableQueue_1<T>;
|
|
742
881
|
Dequeue(): ImmutableQueue_1<T>;
|
|
@@ -763,6 +902,18 @@ export type ImmutableQueue_1<T> = ImmutableQueue_1$instance<T> & __ImmutableQueu
|
|
|
763
902
|
|
|
764
903
|
|
|
765
904
|
export interface ImmutableSortedDictionary_2$instance<TKey, TValue> {
|
|
905
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableSortedDictionary_2: never;
|
|
906
|
+
|
|
907
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
908
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
909
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
910
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
911
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyDictionary_2: never;
|
|
912
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
913
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
914
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
915
|
+
readonly __tsonic_iface_System_Collections_Immutable_IImmutableDictionary_2: never;
|
|
916
|
+
|
|
766
917
|
readonly Count: int;
|
|
767
918
|
readonly IsEmpty: boolean;
|
|
768
919
|
readonly Item: TValue;
|
|
@@ -811,6 +962,17 @@ export type ImmutableSortedDictionary_2<TKey, TValue> = ImmutableSortedDictionar
|
|
|
811
962
|
|
|
812
963
|
|
|
813
964
|
export interface ImmutableSortedDictionary_2_Builder$instance<TKey, TValue> {
|
|
965
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableSortedDictionary_2_Builder: never;
|
|
966
|
+
|
|
967
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
968
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
969
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
970
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
971
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyDictionary_2: never;
|
|
972
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
973
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
974
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
975
|
+
|
|
814
976
|
readonly Count: int;
|
|
815
977
|
Item: TValue;
|
|
816
978
|
KeyComparer: IComparer_1<TKey>;
|
|
@@ -856,6 +1018,20 @@ export type ImmutableSortedDictionary_2_Builder<TKey, TValue> = ImmutableSortedD
|
|
|
856
1018
|
|
|
857
1019
|
|
|
858
1020
|
export interface ImmutableSortedSet_1$instance<T> {
|
|
1021
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableSortedSet_1: never;
|
|
1022
|
+
|
|
1023
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1024
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1025
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
1026
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1027
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1028
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlySet_1: never;
|
|
1029
|
+
readonly __tsonic_iface_System_Collections_Generic_ISet_1: never;
|
|
1030
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1031
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1032
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
1033
|
+
readonly __tsonic_iface_System_Collections_Immutable_IImmutableSet_1: never;
|
|
1034
|
+
|
|
859
1035
|
readonly Count: int;
|
|
860
1036
|
readonly IsEmpty: boolean;
|
|
861
1037
|
readonly [index: number]: T;
|
|
@@ -908,6 +1084,15 @@ export type ImmutableSortedSet_1<T> = ImmutableSortedSet_1$instance<T> & __Immut
|
|
|
908
1084
|
|
|
909
1085
|
|
|
910
1086
|
export interface ImmutableSortedSet_1_Builder$instance<T> {
|
|
1087
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableSortedSet_1_Builder: never;
|
|
1088
|
+
|
|
1089
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1090
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1091
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1092
|
+
readonly __tsonic_iface_System_Collections_Generic_ISet_1: never;
|
|
1093
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1094
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1095
|
+
|
|
911
1096
|
readonly Count: int;
|
|
912
1097
|
readonly [index: number]: T;
|
|
913
1098
|
KeyComparer: IComparer_1<T>;
|
|
@@ -953,6 +1138,12 @@ export type ImmutableSortedSet_1_Builder<T> = ImmutableSortedSet_1_Builder$insta
|
|
|
953
1138
|
|
|
954
1139
|
|
|
955
1140
|
export interface ImmutableStack_1$instance<T> {
|
|
1141
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableStack_1: never;
|
|
1142
|
+
|
|
1143
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1144
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1145
|
+
readonly __tsonic_iface_System_Collections_Immutable_IImmutableStack_1: never;
|
|
1146
|
+
|
|
956
1147
|
readonly IsEmpty: boolean;
|
|
957
1148
|
Clear(): ImmutableStack_1<T>;
|
|
958
1149
|
GetEnumerator(): ImmutableStack_1_Enumerator<T>;
|
|
@@ -21,6 +21,17 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
21
21
|
import type { Array as ClrArray, Boolean as ClrBoolean, IDisposable, Int32, Object as ClrObject, ReadOnlySpan_1, String as ClrString, Type, Void } from "../../System/internal/index.js";
|
|
22
22
|
|
|
23
23
|
export interface Collection_1$instance<T> {
|
|
24
|
+
readonly __tsonic_type_System_Collections_ObjectModel_Collection_1: never;
|
|
25
|
+
|
|
26
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
27
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
28
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
29
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
30
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
31
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
32
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
33
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
34
|
+
|
|
24
35
|
readonly Count: int;
|
|
25
36
|
[index: number]: T;
|
|
26
37
|
Add(item: T): void;
|
|
@@ -59,6 +70,17 @@ export type Collection_1<T> = Collection_1$instance<T> & __Collection_1$views<T>
|
|
|
59
70
|
|
|
60
71
|
|
|
61
72
|
export interface KeyedCollection_2$instance<TKey, TItem> extends Collection_1$instance<TItem> {
|
|
73
|
+
readonly __tsonic_type_System_Collections_ObjectModel_KeyedCollection_2: never;
|
|
74
|
+
|
|
75
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
76
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
77
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
78
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
79
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
80
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
81
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
82
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
83
|
+
|
|
62
84
|
readonly Comparer: IEqualityComparer_1<TKey>;
|
|
63
85
|
Add(item: TItem): void;
|
|
64
86
|
Add(value: unknown): int;
|
|
@@ -101,7 +123,20 @@ export interface __KeyedCollection_2$views<TKey, TItem> {
|
|
|
101
123
|
export type KeyedCollection_2<TKey, TItem> = KeyedCollection_2$instance<TKey, TItem> & __KeyedCollection_2$views<TKey, TItem>;
|
|
102
124
|
|
|
103
125
|
|
|
104
|
-
export interface ObservableCollection_1$instance<T> extends Collection_1$instance<T>, INotifyCollectionChanged, INotifyPropertyChanged {
|
|
126
|
+
export interface ObservableCollection_1$instance<T> extends Collection_1$instance<T>, INotifyCollectionChanged, INotifyPropertyChanged, System_Collections_Specialized_Internal.INotifyCollectionChanged$instance, System_ComponentModel_Internal.INotifyPropertyChanged$instance {
|
|
127
|
+
readonly __tsonic_type_System_Collections_ObjectModel_ObservableCollection_1: never;
|
|
128
|
+
|
|
129
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
130
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
131
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
132
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
133
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
134
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
135
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
136
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
137
|
+
readonly __tsonic_iface_System_Collections_Specialized_INotifyCollectionChanged: never;
|
|
138
|
+
readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanged: never;
|
|
139
|
+
|
|
105
140
|
Add(item: T): void;
|
|
106
141
|
Add(value: unknown): int;
|
|
107
142
|
Clear(): void;
|
|
@@ -145,12 +180,21 @@ export interface __ObservableCollection_1$views<T> {
|
|
|
145
180
|
As_IList(): System_Collections_Internal.IList$instance;
|
|
146
181
|
}
|
|
147
182
|
|
|
148
|
-
export interface ObservableCollection_1$instance<T> extends System_Collections_Specialized_Internal.INotifyCollectionChanged$instance, System_ComponentModel_Internal.INotifyPropertyChanged$instance {}
|
|
149
|
-
|
|
150
183
|
export type ObservableCollection_1<T> = ObservableCollection_1$instance<T> & __ObservableCollection_1$views<T>;
|
|
151
184
|
|
|
152
185
|
|
|
153
186
|
export interface ReadOnlyCollection_1$instance<T> {
|
|
187
|
+
readonly __tsonic_type_System_Collections_ObjectModel_ReadOnlyCollection_1: never;
|
|
188
|
+
|
|
189
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
190
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
191
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
192
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
193
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
194
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
195
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
196
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
197
|
+
|
|
154
198
|
readonly Count: int;
|
|
155
199
|
readonly [index: number]: T;
|
|
156
200
|
Contains(value: T): boolean;
|
|
@@ -180,6 +224,17 @@ export type ReadOnlyCollection_1<T> = ReadOnlyCollection_1$instance<T> & __ReadO
|
|
|
180
224
|
|
|
181
225
|
|
|
182
226
|
export interface ReadOnlyDictionary_2$instance<TKey, TValue> {
|
|
227
|
+
readonly __tsonic_type_System_Collections_ObjectModel_ReadOnlyDictionary_2: never;
|
|
228
|
+
|
|
229
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
230
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
231
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
232
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
233
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyDictionary_2: never;
|
|
234
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
235
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
236
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
237
|
+
|
|
183
238
|
readonly Count: int;
|
|
184
239
|
readonly Item: TValue;
|
|
185
240
|
readonly Keys: ReadOnlyDictionary_2_KeyCollection<TKey, TValue>;
|
|
@@ -211,6 +266,14 @@ export type ReadOnlyDictionary_2<TKey, TValue> = ReadOnlyDictionary_2$instance<T
|
|
|
211
266
|
|
|
212
267
|
|
|
213
268
|
export interface ReadOnlyDictionary_2_KeyCollection$instance<TKey, TValue> {
|
|
269
|
+
readonly __tsonic_type_System_Collections_ObjectModel_ReadOnlyDictionary_2_KeyCollection: never;
|
|
270
|
+
|
|
271
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
272
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
273
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
274
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
275
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
276
|
+
|
|
214
277
|
readonly Count: int;
|
|
215
278
|
Contains(item: TKey): boolean;
|
|
216
279
|
CopyTo(array: TKey[], arrayIndex: int): void;
|
|
@@ -234,6 +297,14 @@ export type ReadOnlyDictionary_2_KeyCollection<TKey, TValue> = ReadOnlyDictionar
|
|
|
234
297
|
|
|
235
298
|
|
|
236
299
|
export interface ReadOnlyDictionary_2_ValueCollection$instance<TKey, TValue> {
|
|
300
|
+
readonly __tsonic_type_System_Collections_ObjectModel_ReadOnlyDictionary_2_ValueCollection: never;
|
|
301
|
+
|
|
302
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
303
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
304
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
305
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
306
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
307
|
+
|
|
237
308
|
readonly Count: int;
|
|
238
309
|
CopyTo(array: TValue[], arrayIndex: int): void;
|
|
239
310
|
GetEnumerator(): IEnumerator_1<TValue>;
|
|
@@ -255,7 +326,20 @@ export interface __ReadOnlyDictionary_2_ValueCollection$views<TKey, TValue> {
|
|
|
255
326
|
export type ReadOnlyDictionary_2_ValueCollection<TKey, TValue> = ReadOnlyDictionary_2_ValueCollection$instance<TKey, TValue> & __ReadOnlyDictionary_2_ValueCollection$views<TKey, TValue>;
|
|
256
327
|
|
|
257
328
|
|
|
258
|
-
export interface ReadOnlyObservableCollection_1$instance<T> extends ReadOnlyCollection_1$instance<T>, INotifyCollectionChanged, INotifyPropertyChanged {
|
|
329
|
+
export interface ReadOnlyObservableCollection_1$instance<T> extends ReadOnlyCollection_1$instance<T>, INotifyCollectionChanged, INotifyPropertyChanged, System_Collections_Specialized_Internal.INotifyCollectionChanged$instance, System_ComponentModel_Internal.INotifyPropertyChanged$instance {
|
|
330
|
+
readonly __tsonic_type_System_Collections_ObjectModel_ReadOnlyObservableCollection_1: never;
|
|
331
|
+
|
|
332
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
333
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
334
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
335
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
336
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
337
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
338
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
339
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
340
|
+
readonly __tsonic_iface_System_Collections_Specialized_INotifyCollectionChanged: never;
|
|
341
|
+
readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanged: never;
|
|
342
|
+
|
|
259
343
|
Add(item: T): void;
|
|
260
344
|
Add(value: unknown): int;
|
|
261
345
|
Clear(): void;
|
|
@@ -291,12 +375,20 @@ export interface __ReadOnlyObservableCollection_1$views<T> {
|
|
|
291
375
|
As_IList(): System_Collections_Internal.IList$instance;
|
|
292
376
|
}
|
|
293
377
|
|
|
294
|
-
export interface ReadOnlyObservableCollection_1$instance<T> extends System_Collections_Specialized_Internal.INotifyCollectionChanged$instance, System_ComponentModel_Internal.INotifyPropertyChanged$instance {}
|
|
295
|
-
|
|
296
378
|
export type ReadOnlyObservableCollection_1<T> = ReadOnlyObservableCollection_1$instance<T> & __ReadOnlyObservableCollection_1$views<T>;
|
|
297
379
|
|
|
298
380
|
|
|
299
381
|
export interface ReadOnlySet_1$instance<T> {
|
|
382
|
+
readonly __tsonic_type_System_Collections_ObjectModel_ReadOnlySet_1: never;
|
|
383
|
+
|
|
384
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
385
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
386
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
387
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlySet_1: never;
|
|
388
|
+
readonly __tsonic_iface_System_Collections_Generic_ISet_1: never;
|
|
389
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
390
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
391
|
+
|
|
300
392
|
readonly Count: int;
|
|
301
393
|
Contains(item: T): boolean;
|
|
302
394
|
GetEnumerator(): IEnumerator_1<T>;
|