@tsonic/dotnet 10.0.5 → 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 +6 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +38 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +58 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +8 -0
- package/Microsoft.Win32/internal/index.d.ts +3 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +34 -0
- package/System/internal/index.d.ts +413 -159
- package/System.Buffers/internal/index.d.ts +24 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +4 -0
- package/System.Collections/internal/index.d.ts +35 -21
- package/System.Collections.Concurrent/internal/index.d.ts +17 -3
- package/System.Collections.Frozen/internal/index.d.ts +12 -0
- package/System.Collections.Generic/internal/index.d.ts +121 -33
- package/System.Collections.Immutable/internal/index.d.ts +44 -0
- package/System.Collections.ObjectModel/internal/index.d.ts +20 -6
- package/System.Collections.Specialized/internal/index.d.ts +30 -6
- package/System.ComponentModel/internal/index.d.ts +269 -21
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +73 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +47 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +22 -0
- package/System.Data/internal/index.d.ts +110 -18
- package/System.Data.Common/internal/index.d.ts +64 -30
- package/System.Data.SqlTypes/internal/index.d.ts +58 -48
- package/System.Diagnostics/internal/index.d.ts +143 -9
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +26 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +31 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +8 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +40 -6
- package/System.Drawing/internal/index.d.ts +24 -0
- package/System.Dynamic/internal/index.d.ts +37 -5
- package/System.Formats.Asn1/internal/index.d.ts +13 -3
- package/System.Formats.Tar/internal/index.d.ts +20 -6
- package/System.Globalization/internal/index.d.ts +64 -18
- package/System.IO/internal/index.d.ts +74 -18
- package/System.IO.Compression/internal/index.d.ts +25 -9
- package/System.IO.Enumeration/internal/index.d.ts +6 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +9 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +6 -0
- package/System.IO.Pipelines/internal/index.d.ts +18 -2
- package/System.IO.Pipes/internal/index.d.ts +16 -0
- package/System.Linq/internal/index.d.ts +17 -3
- package/System.Linq.Expressions/internal/index.d.ts +86 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +109 -19
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +50 -0
- package/System.Net.Http.Headers/internal/index.d.ts +78 -60
- package/System.Net.Http.Json/internal/index.d.ts +2 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +31 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +62 -0
- package/System.Net.Quic/internal/index.d.ts +22 -6
- package/System.Net.Security/internal/index.d.ts +27 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +38 -6
- package/System.Net.WebSockets/internal/index.d.ts +23 -3
- package/System.Numerics/internal/index.d.ts +24 -6
- package/System.Reflection/internal/index.d.ts +134 -30
- package/System.Reflection.Emit/internal/index.d.ts +45 -9
- package/System.Reflection.Metadata/internal/index.d.ts +321 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +76 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +37 -3
- package/System.Resources/internal/index.d.ts +16 -0
- package/System.Runtime/internal/index.d.ts +12 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +275 -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 +174 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +40 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +55 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +57 -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 +12 -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 +7 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +75 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +3 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +4 -0
- package/System.Runtime.Versioning/internal/index.d.ts +26 -0
- package/System.Security/internal/index.d.ts +28 -6
- package/System.Security.AccessControl/internal/index.d.ts +94 -0
- package/System.Security.Authentication/internal/index.d.ts +4 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +9 -3
- package/System.Security.Claims/internal/index.d.ts +8 -6
- package/System.Security.Cryptography/internal/index.d.ts +298 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +69 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +4 -0
- package/System.Security.Principal/internal/index.d.ts +19 -5
- package/System.Text/internal/index.d.ts +68 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +32 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +10 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +54 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +23 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +33 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +108 -24
- package/System.Threading.Channels/internal/index.d.ts +18 -0
- package/System.Threading.Tasks/internal/index.d.ts +34 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +32 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +2 -0
- package/System.Timers/internal/index.d.ts +7 -3
- package/System.Transactions/internal/index.d.ts +37 -15
- package/System.Web/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +106 -18
- package/System.Xml.Linq/internal/index.d.ts +41 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +148 -0
- package/System.Xml.Serialization/internal/index.d.ts +116 -0
- package/System.Xml.XPath/internal/index.d.ts +14 -6
- package/System.Xml.Xsl/internal/index.d.ts +16 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +88 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -113,6 +113,8 @@ export interface IImmutableStack_1$instance<T> extends IEnumerable_1<T>, IEnumer
|
|
|
113
113
|
export type IImmutableStack_1<T> = IImmutableStack_1$instance<T>;
|
|
114
114
|
|
|
115
115
|
export interface ImmutableArray_1$instance<T> {
|
|
116
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableArray_1: never;
|
|
117
|
+
|
|
116
118
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
117
119
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
118
120
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -223,6 +225,8 @@ export type ImmutableArray_1<T> = ImmutableArray_1$instance<T> & __ImmutableArra
|
|
|
223
225
|
|
|
224
226
|
|
|
225
227
|
export interface ImmutableArray_1_Enumerator$instance<T> {
|
|
228
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableArray_1_Enumerator: never;
|
|
229
|
+
|
|
226
230
|
readonly Current: T;
|
|
227
231
|
MoveNext(): boolean;
|
|
228
232
|
}
|
|
@@ -236,6 +240,8 @@ export const ImmutableArray_1_Enumerator: {
|
|
|
236
240
|
export type ImmutableArray_1_Enumerator<T> = ImmutableArray_1_Enumerator$instance<T>;
|
|
237
241
|
|
|
238
242
|
export interface ImmutableDictionary_2_Enumerator$instance<TKey, TValue> extends IDisposable {
|
|
243
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableDictionary_2_Enumerator: never;
|
|
244
|
+
|
|
239
245
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
240
246
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
241
247
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -261,6 +267,8 @@ export type ImmutableDictionary_2_Enumerator<TKey, TValue> = ImmutableDictionary
|
|
|
261
267
|
|
|
262
268
|
|
|
263
269
|
export interface ImmutableHashSet_1_Enumerator$instance<T> extends IDisposable {
|
|
270
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableHashSet_1_Enumerator: never;
|
|
271
|
+
|
|
264
272
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
265
273
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
266
274
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -286,6 +294,8 @@ export type ImmutableHashSet_1_Enumerator<T> = ImmutableHashSet_1_Enumerator$ins
|
|
|
286
294
|
|
|
287
295
|
|
|
288
296
|
export interface ImmutableList_1_Enumerator$instance<T> extends IDisposable {
|
|
297
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableList_1_Enumerator: never;
|
|
298
|
+
|
|
289
299
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
290
300
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
291
301
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -311,6 +321,8 @@ export type ImmutableList_1_Enumerator<T> = ImmutableList_1_Enumerator$instance<
|
|
|
311
321
|
|
|
312
322
|
|
|
313
323
|
export interface ImmutableQueue_1_Enumerator$instance<T> {
|
|
324
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableQueue_1_Enumerator: never;
|
|
325
|
+
|
|
314
326
|
readonly Current: T;
|
|
315
327
|
MoveNext(): boolean;
|
|
316
328
|
}
|
|
@@ -324,6 +336,8 @@ export const ImmutableQueue_1_Enumerator: {
|
|
|
324
336
|
export type ImmutableQueue_1_Enumerator<T> = ImmutableQueue_1_Enumerator$instance<T>;
|
|
325
337
|
|
|
326
338
|
export interface ImmutableSortedDictionary_2_Enumerator$instance<TKey, TValue> extends IDisposable {
|
|
339
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableSortedDictionary_2_Enumerator: never;
|
|
340
|
+
|
|
327
341
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
328
342
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
329
343
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -349,6 +363,8 @@ export type ImmutableSortedDictionary_2_Enumerator<TKey, TValue> = ImmutableSort
|
|
|
349
363
|
|
|
350
364
|
|
|
351
365
|
export interface ImmutableSortedSet_1_Enumerator$instance<T> extends IDisposable {
|
|
366
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableSortedSet_1_Enumerator: never;
|
|
367
|
+
|
|
352
368
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
353
369
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
354
370
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -374,6 +390,8 @@ export type ImmutableSortedSet_1_Enumerator<T> = ImmutableSortedSet_1_Enumerator
|
|
|
374
390
|
|
|
375
391
|
|
|
376
392
|
export interface ImmutableStack_1_Enumerator$instance<T> {
|
|
393
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableStack_1_Enumerator: never;
|
|
394
|
+
|
|
377
395
|
readonly Current: T;
|
|
378
396
|
MoveNext(): boolean;
|
|
379
397
|
}
|
|
@@ -387,6 +405,8 @@ export const ImmutableStack_1_Enumerator: {
|
|
|
387
405
|
export type ImmutableStack_1_Enumerator<T> = ImmutableStack_1_Enumerator$instance<T>;
|
|
388
406
|
|
|
389
407
|
export interface ImmutableArray_1_Builder$instance<T> {
|
|
408
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableArray_1_Builder: never;
|
|
409
|
+
|
|
390
410
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
391
411
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
392
412
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -463,6 +483,8 @@ export type ImmutableArray_1_Builder<T> = ImmutableArray_1_Builder$instance<T> &
|
|
|
463
483
|
|
|
464
484
|
|
|
465
485
|
export interface ImmutableDictionary_2$instance<TKey, TValue> {
|
|
486
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableDictionary_2: never;
|
|
487
|
+
|
|
466
488
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
467
489
|
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
468
490
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
@@ -520,6 +542,8 @@ export type ImmutableDictionary_2<TKey, TValue> = ImmutableDictionary_2$instance
|
|
|
520
542
|
|
|
521
543
|
|
|
522
544
|
export interface ImmutableDictionary_2_Builder$instance<TKey, TValue> {
|
|
545
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableDictionary_2_Builder: never;
|
|
546
|
+
|
|
523
547
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
524
548
|
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
525
549
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
@@ -573,6 +597,8 @@ export type ImmutableDictionary_2_Builder<TKey, TValue> = ImmutableDictionary_2_
|
|
|
573
597
|
|
|
574
598
|
|
|
575
599
|
export interface ImmutableHashSet_1$instance<T> {
|
|
600
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableHashSet_1: never;
|
|
601
|
+
|
|
576
602
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
577
603
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
578
604
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
@@ -626,6 +652,8 @@ export type ImmutableHashSet_1<T> = ImmutableHashSet_1$instance<T> & __Immutable
|
|
|
626
652
|
|
|
627
653
|
|
|
628
654
|
export interface ImmutableHashSet_1_Builder$instance<T> {
|
|
655
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableHashSet_1_Builder: never;
|
|
656
|
+
|
|
629
657
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
630
658
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
631
659
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
@@ -670,6 +698,8 @@ export type ImmutableHashSet_1_Builder<T> = ImmutableHashSet_1_Builder$instance<
|
|
|
670
698
|
|
|
671
699
|
|
|
672
700
|
export interface ImmutableList_1$instance<T> {
|
|
701
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableList_1: never;
|
|
702
|
+
|
|
673
703
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
674
704
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
675
705
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -754,6 +784,8 @@ export type ImmutableList_1<T> = ImmutableList_1$instance<T> & __ImmutableList_1
|
|
|
754
784
|
|
|
755
785
|
|
|
756
786
|
export interface ImmutableList_1_Builder$instance<T> {
|
|
787
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableList_1_Builder: never;
|
|
788
|
+
|
|
757
789
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
758
790
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
759
791
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -838,6 +870,8 @@ export type ImmutableList_1_Builder<T> = ImmutableList_1_Builder$instance<T> & _
|
|
|
838
870
|
|
|
839
871
|
|
|
840
872
|
export interface ImmutableQueue_1$instance<T> {
|
|
873
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableQueue_1: never;
|
|
874
|
+
|
|
841
875
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
842
876
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
843
877
|
readonly __tsonic_iface_System_Collections_Immutable_IImmutableQueue_1: never;
|
|
@@ -868,6 +902,8 @@ export type ImmutableQueue_1<T> = ImmutableQueue_1$instance<T> & __ImmutableQueu
|
|
|
868
902
|
|
|
869
903
|
|
|
870
904
|
export interface ImmutableSortedDictionary_2$instance<TKey, TValue> {
|
|
905
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableSortedDictionary_2: never;
|
|
906
|
+
|
|
871
907
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
872
908
|
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
873
909
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
@@ -926,6 +962,8 @@ export type ImmutableSortedDictionary_2<TKey, TValue> = ImmutableSortedDictionar
|
|
|
926
962
|
|
|
927
963
|
|
|
928
964
|
export interface ImmutableSortedDictionary_2_Builder$instance<TKey, TValue> {
|
|
965
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableSortedDictionary_2_Builder: never;
|
|
966
|
+
|
|
929
967
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
930
968
|
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
931
969
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
@@ -980,6 +1018,8 @@ export type ImmutableSortedDictionary_2_Builder<TKey, TValue> = ImmutableSortedD
|
|
|
980
1018
|
|
|
981
1019
|
|
|
982
1020
|
export interface ImmutableSortedSet_1$instance<T> {
|
|
1021
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableSortedSet_1: never;
|
|
1022
|
+
|
|
983
1023
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
984
1024
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
985
1025
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -1044,6 +1084,8 @@ export type ImmutableSortedSet_1<T> = ImmutableSortedSet_1$instance<T> & __Immut
|
|
|
1044
1084
|
|
|
1045
1085
|
|
|
1046
1086
|
export interface ImmutableSortedSet_1_Builder$instance<T> {
|
|
1087
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableSortedSet_1_Builder: never;
|
|
1088
|
+
|
|
1047
1089
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1048
1090
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1049
1091
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
@@ -1096,6 +1138,8 @@ export type ImmutableSortedSet_1_Builder<T> = ImmutableSortedSet_1_Builder$insta
|
|
|
1096
1138
|
|
|
1097
1139
|
|
|
1098
1140
|
export interface ImmutableStack_1$instance<T> {
|
|
1141
|
+
readonly __tsonic_type_System_Collections_Immutable_ImmutableStack_1: never;
|
|
1142
|
+
|
|
1099
1143
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1100
1144
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1101
1145
|
readonly __tsonic_iface_System_Collections_Immutable_IImmutableStack_1: never;
|
|
@@ -21,6 +21,8 @@ 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
|
+
|
|
24
26
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
25
27
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
26
28
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -68,6 +70,8 @@ export type Collection_1<T> = Collection_1$instance<T> & __Collection_1$views<T>
|
|
|
68
70
|
|
|
69
71
|
|
|
70
72
|
export interface KeyedCollection_2$instance<TKey, TItem> extends Collection_1$instance<TItem> {
|
|
73
|
+
readonly __tsonic_type_System_Collections_ObjectModel_KeyedCollection_2: never;
|
|
74
|
+
|
|
71
75
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
72
76
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
73
77
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -119,7 +123,9 @@ export interface __KeyedCollection_2$views<TKey, TItem> {
|
|
|
119
123
|
export type KeyedCollection_2<TKey, TItem> = KeyedCollection_2$instance<TKey, TItem> & __KeyedCollection_2$views<TKey, TItem>;
|
|
120
124
|
|
|
121
125
|
|
|
122
|
-
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
|
+
|
|
123
129
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
124
130
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
125
131
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -174,12 +180,12 @@ export interface __ObservableCollection_1$views<T> {
|
|
|
174
180
|
As_IList(): System_Collections_Internal.IList$instance;
|
|
175
181
|
}
|
|
176
182
|
|
|
177
|
-
export interface ObservableCollection_1$instance<T> extends System_Collections_Specialized_Internal.INotifyCollectionChanged$instance, System_ComponentModel_Internal.INotifyPropertyChanged$instance {}
|
|
178
|
-
|
|
179
183
|
export type ObservableCollection_1<T> = ObservableCollection_1$instance<T> & __ObservableCollection_1$views<T>;
|
|
180
184
|
|
|
181
185
|
|
|
182
186
|
export interface ReadOnlyCollection_1$instance<T> {
|
|
187
|
+
readonly __tsonic_type_System_Collections_ObjectModel_ReadOnlyCollection_1: never;
|
|
188
|
+
|
|
183
189
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
184
190
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
185
191
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -218,6 +224,8 @@ export type ReadOnlyCollection_1<T> = ReadOnlyCollection_1$instance<T> & __ReadO
|
|
|
218
224
|
|
|
219
225
|
|
|
220
226
|
export interface ReadOnlyDictionary_2$instance<TKey, TValue> {
|
|
227
|
+
readonly __tsonic_type_System_Collections_ObjectModel_ReadOnlyDictionary_2: never;
|
|
228
|
+
|
|
221
229
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
222
230
|
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
223
231
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
@@ -258,6 +266,8 @@ export type ReadOnlyDictionary_2<TKey, TValue> = ReadOnlyDictionary_2$instance<T
|
|
|
258
266
|
|
|
259
267
|
|
|
260
268
|
export interface ReadOnlyDictionary_2_KeyCollection$instance<TKey, TValue> {
|
|
269
|
+
readonly __tsonic_type_System_Collections_ObjectModel_ReadOnlyDictionary_2_KeyCollection: never;
|
|
270
|
+
|
|
261
271
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
262
272
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
263
273
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
@@ -287,6 +297,8 @@ export type ReadOnlyDictionary_2_KeyCollection<TKey, TValue> = ReadOnlyDictionar
|
|
|
287
297
|
|
|
288
298
|
|
|
289
299
|
export interface ReadOnlyDictionary_2_ValueCollection$instance<TKey, TValue> {
|
|
300
|
+
readonly __tsonic_type_System_Collections_ObjectModel_ReadOnlyDictionary_2_ValueCollection: never;
|
|
301
|
+
|
|
290
302
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
291
303
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
292
304
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
@@ -314,7 +326,9 @@ export interface __ReadOnlyDictionary_2_ValueCollection$views<TKey, TValue> {
|
|
|
314
326
|
export type ReadOnlyDictionary_2_ValueCollection<TKey, TValue> = ReadOnlyDictionary_2_ValueCollection$instance<TKey, TValue> & __ReadOnlyDictionary_2_ValueCollection$views<TKey, TValue>;
|
|
315
327
|
|
|
316
328
|
|
|
317
|
-
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
|
+
|
|
318
332
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
319
333
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
320
334
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -361,12 +375,12 @@ export interface __ReadOnlyObservableCollection_1$views<T> {
|
|
|
361
375
|
As_IList(): System_Collections_Internal.IList$instance;
|
|
362
376
|
}
|
|
363
377
|
|
|
364
|
-
export interface ReadOnlyObservableCollection_1$instance<T> extends System_Collections_Specialized_Internal.INotifyCollectionChanged$instance, System_ComponentModel_Internal.INotifyPropertyChanged$instance {}
|
|
365
|
-
|
|
366
378
|
export type ReadOnlyObservableCollection_1<T> = ReadOnlyObservableCollection_1$instance<T> & __ReadOnlyObservableCollection_1$views<T>;
|
|
367
379
|
|
|
368
380
|
|
|
369
381
|
export interface ReadOnlySet_1$instance<T> {
|
|
382
|
+
readonly __tsonic_type_System_Collections_ObjectModel_ReadOnlySet_1: never;
|
|
383
|
+
|
|
370
384
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
371
385
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
372
386
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
@@ -64,6 +64,8 @@ export interface IOrderedDictionary$instance extends IDictionary, ICollection, I
|
|
|
64
64
|
export type IOrderedDictionary = IOrderedDictionary$instance;
|
|
65
65
|
|
|
66
66
|
export interface BitVector32$instance {
|
|
67
|
+
readonly __tsonic_type_System_Collections_Specialized_BitVector32: never;
|
|
68
|
+
|
|
67
69
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
68
70
|
|
|
69
71
|
readonly Data: int;
|
|
@@ -100,6 +102,8 @@ export type BitVector32 = BitVector32$instance & __BitVector32$views;
|
|
|
100
102
|
|
|
101
103
|
|
|
102
104
|
export interface BitVector32_Section$instance {
|
|
105
|
+
readonly __tsonic_type_System_Collections_Specialized_BitVector32_Section: never;
|
|
106
|
+
|
|
103
107
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
104
108
|
|
|
105
109
|
readonly Mask: short;
|
|
@@ -128,6 +132,8 @@ export type BitVector32_Section = BitVector32_Section$instance & __BitVector32_S
|
|
|
128
132
|
|
|
129
133
|
|
|
130
134
|
export interface CollectionsUtil$instance {
|
|
135
|
+
readonly __tsonic_type_System_Collections_Specialized_CollectionsUtil: never;
|
|
136
|
+
|
|
131
137
|
}
|
|
132
138
|
|
|
133
139
|
|
|
@@ -143,6 +149,8 @@ export const CollectionsUtil: {
|
|
|
143
149
|
export type CollectionsUtil = CollectionsUtil$instance;
|
|
144
150
|
|
|
145
151
|
export interface HybridDictionary$instance {
|
|
152
|
+
readonly __tsonic_type_System_Collections_Specialized_HybridDictionary: never;
|
|
153
|
+
|
|
146
154
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
147
155
|
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
148
156
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -183,6 +191,8 @@ export type HybridDictionary = HybridDictionary$instance & __HybridDictionary$vi
|
|
|
183
191
|
|
|
184
192
|
|
|
185
193
|
export interface ListDictionary$instance {
|
|
194
|
+
readonly __tsonic_type_System_Collections_Specialized_ListDictionary: never;
|
|
195
|
+
|
|
186
196
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
187
197
|
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
188
198
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -221,6 +231,8 @@ export type ListDictionary = ListDictionary$instance & __ListDictionary$views;
|
|
|
221
231
|
|
|
222
232
|
|
|
223
233
|
export interface ListDictionary_DictionaryNode$instance {
|
|
234
|
+
readonly __tsonic_type_System_Collections_Specialized_ListDictionary_DictionaryNode: never;
|
|
235
|
+
|
|
224
236
|
key: unknown;
|
|
225
237
|
value: unknown | undefined;
|
|
226
238
|
next: ListDictionary_DictionaryNode | undefined;
|
|
@@ -234,7 +246,9 @@ export const ListDictionary_DictionaryNode: {
|
|
|
234
246
|
|
|
235
247
|
export type ListDictionary_DictionaryNode = ListDictionary_DictionaryNode$instance;
|
|
236
248
|
|
|
237
|
-
export interface NameObjectCollectionBase$instance {
|
|
249
|
+
export interface NameObjectCollectionBase$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
250
|
+
readonly __tsonic_type_System_Collections_Specialized_NameObjectCollectionBase: never;
|
|
251
|
+
|
|
238
252
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
239
253
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
240
254
|
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
@@ -259,12 +273,12 @@ export interface __NameObjectCollectionBase$views {
|
|
|
259
273
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
260
274
|
}
|
|
261
275
|
|
|
262
|
-
export interface NameObjectCollectionBase$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
263
|
-
|
|
264
276
|
export type NameObjectCollectionBase = NameObjectCollectionBase$instance & __NameObjectCollectionBase$views;
|
|
265
277
|
|
|
266
278
|
|
|
267
279
|
export interface NameObjectCollectionBase_KeysCollection$instance {
|
|
280
|
+
readonly __tsonic_type_System_Collections_Specialized_NameObjectCollectionBase_KeysCollection: never;
|
|
281
|
+
|
|
268
282
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
269
283
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
270
284
|
|
|
@@ -288,6 +302,8 @@ export type NameObjectCollectionBase_KeysCollection = NameObjectCollectionBase_K
|
|
|
288
302
|
|
|
289
303
|
|
|
290
304
|
export interface NameValueCollection$instance extends NameObjectCollectionBase$instance {
|
|
305
|
+
readonly __tsonic_type_System_Collections_Specialized_NameValueCollection: never;
|
|
306
|
+
|
|
291
307
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
292
308
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
293
309
|
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
@@ -338,6 +354,8 @@ export type NameValueCollection = NameValueCollection$instance & __NameValueColl
|
|
|
338
354
|
|
|
339
355
|
|
|
340
356
|
export interface NotifyCollectionChangedEventArgs$instance extends EventArgs {
|
|
357
|
+
readonly __tsonic_type_System_Collections_Specialized_NotifyCollectionChangedEventArgs: never;
|
|
358
|
+
|
|
341
359
|
readonly Action: NotifyCollectionChangedAction;
|
|
342
360
|
readonly NewItems: IList | undefined;
|
|
343
361
|
readonly NewStartingIndex: int;
|
|
@@ -363,7 +381,9 @@ export const NotifyCollectionChangedEventArgs: {
|
|
|
363
381
|
|
|
364
382
|
export type NotifyCollectionChangedEventArgs = NotifyCollectionChangedEventArgs$instance;
|
|
365
383
|
|
|
366
|
-
export interface OrderedDictionary$instance {
|
|
384
|
+
export interface OrderedDictionary$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
385
|
+
readonly __tsonic_type_System_Collections_Specialized_OrderedDictionary: never;
|
|
386
|
+
|
|
367
387
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
368
388
|
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
369
389
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -410,12 +430,12 @@ export interface __OrderedDictionary$views {
|
|
|
410
430
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
411
431
|
}
|
|
412
432
|
|
|
413
|
-
export interface OrderedDictionary$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
414
|
-
|
|
415
433
|
export type OrderedDictionary = OrderedDictionary$instance & __OrderedDictionary$views;
|
|
416
434
|
|
|
417
435
|
|
|
418
436
|
export interface StringCollection$instance {
|
|
437
|
+
readonly __tsonic_type_System_Collections_Specialized_StringCollection: never;
|
|
438
|
+
|
|
419
439
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
420
440
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
421
441
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
@@ -453,6 +473,8 @@ export type StringCollection = StringCollection$instance & __StringCollection$vi
|
|
|
453
473
|
|
|
454
474
|
|
|
455
475
|
export interface StringDictionary$instance {
|
|
476
|
+
readonly __tsonic_type_System_Collections_Specialized_StringDictionary: never;
|
|
477
|
+
|
|
456
478
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
457
479
|
|
|
458
480
|
readonly Count: int;
|
|
@@ -484,6 +506,8 @@ export type StringDictionary = StringDictionary$instance & __StringDictionary$vi
|
|
|
484
506
|
|
|
485
507
|
|
|
486
508
|
export interface StringEnumerator$instance {
|
|
509
|
+
readonly __tsonic_type_System_Collections_Specialized_StringEnumerator: never;
|
|
510
|
+
|
|
487
511
|
readonly Current: string | undefined;
|
|
488
512
|
MoveNext(): boolean;
|
|
489
513
|
Reset(): void;
|