@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.
Files changed (126) hide show
  1. package/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +6 -0
  2. package/Microsoft.VisualBasic/internal/index.d.ts +38 -0
  3. package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +58 -0
  4. package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +8 -0
  5. package/Microsoft.Win32/internal/index.d.ts +3 -3
  6. package/Microsoft.Win32.SafeHandles/internal/index.d.ts +34 -0
  7. package/System/internal/index.d.ts +413 -159
  8. package/System.Buffers/internal/index.d.ts +24 -6
  9. package/System.CodeDom.Compiler/internal/index.d.ts +4 -0
  10. package/System.Collections/internal/index.d.ts +35 -21
  11. package/System.Collections.Concurrent/internal/index.d.ts +17 -3
  12. package/System.Collections.Frozen/internal/index.d.ts +12 -0
  13. package/System.Collections.Generic/internal/index.d.ts +121 -33
  14. package/System.Collections.Immutable/internal/index.d.ts +44 -0
  15. package/System.Collections.ObjectModel/internal/index.d.ts +20 -6
  16. package/System.Collections.Specialized/internal/index.d.ts +30 -6
  17. package/System.ComponentModel/internal/index.d.ts +269 -21
  18. package/System.ComponentModel.DataAnnotations/internal/index.d.ts +73 -3
  19. package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
  20. package/System.ComponentModel.Design/internal/index.d.ts +47 -3
  21. package/System.ComponentModel.Design.Serialization/internal/index.d.ts +22 -0
  22. package/System.Data/internal/index.d.ts +110 -18
  23. package/System.Data.Common/internal/index.d.ts +64 -30
  24. package/System.Data.SqlTypes/internal/index.d.ts +58 -48
  25. package/System.Diagnostics/internal/index.d.ts +143 -9
  26. package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
  27. package/System.Diagnostics.Contracts/internal/index.d.ts +26 -0
  28. package/System.Diagnostics.Metrics/internal/index.d.ts +31 -3
  29. package/System.Diagnostics.SymbolStore/internal/index.d.ts +8 -0
  30. package/System.Diagnostics.Tracing/internal/index.d.ts +40 -6
  31. package/System.Drawing/internal/index.d.ts +24 -0
  32. package/System.Dynamic/internal/index.d.ts +37 -5
  33. package/System.Formats.Asn1/internal/index.d.ts +13 -3
  34. package/System.Formats.Tar/internal/index.d.ts +20 -6
  35. package/System.Globalization/internal/index.d.ts +64 -18
  36. package/System.IO/internal/index.d.ts +74 -18
  37. package/System.IO.Compression/internal/index.d.ts +25 -9
  38. package/System.IO.Enumeration/internal/index.d.ts +6 -0
  39. package/System.IO.IsolatedStorage/internal/index.d.ts +9 -3
  40. package/System.IO.MemoryMappedFiles/internal/index.d.ts +6 -0
  41. package/System.IO.Pipelines/internal/index.d.ts +18 -2
  42. package/System.IO.Pipes/internal/index.d.ts +16 -0
  43. package/System.Linq/internal/index.d.ts +17 -3
  44. package/System.Linq.Expressions/internal/index.d.ts +86 -18
  45. package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
  46. package/System.Net/internal/index.d.ts +109 -19
  47. package/System.Net.Cache/internal/index.d.ts +4 -0
  48. package/System.Net.Http/internal/index.d.ts +50 -0
  49. package/System.Net.Http.Headers/internal/index.d.ts +78 -60
  50. package/System.Net.Http.Json/internal/index.d.ts +2 -0
  51. package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
  52. package/System.Net.Mail/internal/index.d.ts +31 -9
  53. package/System.Net.Mime/internal/index.d.ts +4 -0
  54. package/System.Net.NetworkInformation/internal/index.d.ts +62 -0
  55. package/System.Net.Quic/internal/index.d.ts +22 -6
  56. package/System.Net.Security/internal/index.d.ts +27 -3
  57. package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
  58. package/System.Net.Sockets/internal/index.d.ts +38 -6
  59. package/System.Net.WebSockets/internal/index.d.ts +23 -3
  60. package/System.Numerics/internal/index.d.ts +24 -6
  61. package/System.Reflection/internal/index.d.ts +134 -30
  62. package/System.Reflection.Emit/internal/index.d.ts +45 -9
  63. package/System.Reflection.Metadata/internal/index.d.ts +321 -5
  64. package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +76 -0
  65. package/System.Reflection.PortableExecutable/internal/index.d.ts +37 -3
  66. package/System.Resources/internal/index.d.ts +16 -0
  67. package/System.Runtime/internal/index.d.ts +12 -6
  68. package/System.Runtime.CompilerServices/internal/index.d.ts +275 -33
  69. package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
  70. package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
  71. package/System.Runtime.InteropServices/internal/index.d.ts +174 -14
  72. package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +40 -0
  73. package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
  74. package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +55 -3
  75. package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +57 -12
  76. package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
  77. package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
  78. package/System.Runtime.Intrinsics/internal/index.d.ts +12 -12
  79. package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
  80. package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
  81. package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
  82. package/System.Runtime.Loader/internal/index.d.ts +7 -3
  83. package/System.Runtime.Remoting/internal/index.d.ts +2 -0
  84. package/System.Runtime.Serialization/internal/index.d.ts +75 -9
  85. package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
  86. package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +3 -3
  87. package/System.Runtime.Serialization.Json/internal/index.d.ts +4 -0
  88. package/System.Runtime.Versioning/internal/index.d.ts +26 -0
  89. package/System.Security/internal/index.d.ts +28 -6
  90. package/System.Security.AccessControl/internal/index.d.ts +94 -0
  91. package/System.Security.Authentication/internal/index.d.ts +4 -0
  92. package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +9 -3
  93. package/System.Security.Claims/internal/index.d.ts +8 -6
  94. package/System.Security.Cryptography/internal/index.d.ts +298 -42
  95. package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +69 -9
  96. package/System.Security.Permissions/internal/index.d.ts +6 -0
  97. package/System.Security.Policy/internal/index.d.ts +4 -0
  98. package/System.Security.Principal/internal/index.d.ts +19 -5
  99. package/System.Text/internal/index.d.ts +68 -8
  100. package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
  101. package/System.Text.Json/internal/index.d.ts +32 -6
  102. package/System.Text.Json.Nodes/internal/index.d.ts +10 -0
  103. package/System.Text.Json.Schema/internal/index.d.ts +4 -0
  104. package/System.Text.Json.Serialization/internal/index.d.ts +54 -0
  105. package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +23 -3
  106. package/System.Text.RegularExpressions/internal/index.d.ts +33 -3
  107. package/System.Text.Unicode/internal/index.d.ts +4 -0
  108. package/System.Threading/internal/index.d.ts +108 -24
  109. package/System.Threading.Channels/internal/index.d.ts +18 -0
  110. package/System.Threading.Tasks/internal/index.d.ts +34 -6
  111. package/System.Threading.Tasks.Dataflow/internal/index.d.ts +32 -0
  112. package/System.Threading.Tasks.Sources/internal/index.d.ts +2 -0
  113. package/System.Timers/internal/index.d.ts +7 -3
  114. package/System.Transactions/internal/index.d.ts +37 -15
  115. package/System.Web/internal/index.d.ts +2 -0
  116. package/System.Windows.Markup/internal/index.d.ts +2 -0
  117. package/System.Xml/internal/index.d.ts +106 -18
  118. package/System.Xml.Linq/internal/index.d.ts +41 -17
  119. package/System.Xml.Resolvers/internal/index.d.ts +2 -0
  120. package/System.Xml.Schema/internal/index.d.ts +148 -0
  121. package/System.Xml.Serialization/internal/index.d.ts +116 -0
  122. package/System.Xml.XPath/internal/index.d.ts +14 -6
  123. package/System.Xml.Xsl/internal/index.d.ts +16 -0
  124. package/System.Xml.Xsl.Runtime/internal/index.d.ts +88 -0
  125. package/__internal/extensions/index.d.ts +2143 -1955
  126. package/package.json +2 -2
@@ -42,6 +42,8 @@ export enum CSharpBinderFlags {
42
42
 
43
43
 
44
44
  export interface CSharpArgumentInfo$instance {
45
+ readonly __tsonic_type_Microsoft_CSharp_RuntimeBinder_CSharpArgumentInfo: never;
46
+
45
47
  }
46
48
 
47
49
 
@@ -53,6 +55,8 @@ export const CSharpArgumentInfo: {
53
55
  export type CSharpArgumentInfo = CSharpArgumentInfo$instance;
54
56
 
55
57
  export interface RuntimeBinderException$instance extends Exception {
58
+ readonly __tsonic_type_Microsoft_CSharp_RuntimeBinder_RuntimeBinderException: never;
59
+
56
60
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
57
61
 
58
62
  GetObjectData(info: SerializationInfo, context: StreamingContext): void;
@@ -74,6 +78,8 @@ export type RuntimeBinderException = RuntimeBinderException$instance & __Runtime
74
78
 
75
79
 
76
80
  export interface RuntimeBinderInternalCompilerException$instance extends Exception {
81
+ readonly __tsonic_type_Microsoft_CSharp_RuntimeBinder_RuntimeBinderInternalCompilerException: never;
82
+
77
83
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
78
84
 
79
85
  GetObjectData(info: SerializationInfo, context: StreamingContext): void;
@@ -205,6 +205,8 @@ export enum VbStrConv {
205
205
 
206
206
 
207
207
  export interface SpcInfo$instance {
208
+ readonly __tsonic_type_Microsoft_VisualBasic_SpcInfo: never;
209
+
208
210
  Count: short;
209
211
  }
210
212
 
@@ -217,6 +219,8 @@ export const SpcInfo: {
217
219
  export type SpcInfo = SpcInfo$instance;
218
220
 
219
221
  export interface TabInfo$instance {
222
+ readonly __tsonic_type_Microsoft_VisualBasic_TabInfo: never;
223
+
220
224
  Column: short;
221
225
  }
222
226
 
@@ -229,6 +233,8 @@ export const TabInfo: {
229
233
  export type TabInfo = TabInfo$instance;
230
234
 
231
235
  export interface Collection$instance {
236
+ readonly __tsonic_type_Microsoft_VisualBasic_Collection: never;
237
+
232
238
  readonly __tsonic_iface_System_Collections_ICollection: never;
233
239
  readonly __tsonic_iface_System_Collections_IEnumerable: never;
234
240
  readonly __tsonic_iface_System_Collections_IList: never;
@@ -261,6 +267,8 @@ export type Collection = Collection$instance & __Collection$views;
261
267
 
262
268
 
263
269
  export interface ComClassAttribute$instance extends Attribute {
270
+ readonly __tsonic_type_Microsoft_VisualBasic_ComClassAttribute: never;
271
+
264
272
  readonly ClassID: string;
265
273
  readonly EventID: string;
266
274
  readonly InterfaceID: string;
@@ -279,6 +287,8 @@ export const ComClassAttribute: {
279
287
  export type ComClassAttribute = ComClassAttribute$instance;
280
288
 
281
289
  export interface Constants$instance {
290
+ readonly __tsonic_type_Microsoft_VisualBasic_Constants: never;
291
+
282
292
  }
283
293
 
284
294
 
@@ -391,6 +401,8 @@ export const Constants: {
391
401
  export type Constants = Constants$instance;
392
402
 
393
403
  export interface ControlChars$instance {
404
+ readonly __tsonic_type_Microsoft_VisualBasic_ControlChars: never;
405
+
394
406
  }
395
407
 
396
408
 
@@ -412,6 +424,8 @@ export const ControlChars: {
412
424
  export type ControlChars = ControlChars$instance;
413
425
 
414
426
  export interface Conversion$instance {
427
+ readonly __tsonic_type_Microsoft_VisualBasic_Conversion: never;
428
+
415
429
  }
416
430
 
417
431
 
@@ -462,6 +476,8 @@ export const Conversion: {
462
476
  export type Conversion = Conversion$instance;
463
477
 
464
478
  export interface DateAndTime$instance {
479
+ readonly __tsonic_type_Microsoft_VisualBasic_DateAndTime: never;
480
+
465
481
  }
466
482
 
467
483
 
@@ -497,6 +513,8 @@ export const DateAndTime: {
497
513
  export type DateAndTime = DateAndTime$instance;
498
514
 
499
515
  export interface ErrObject$instance {
516
+ readonly __tsonic_type_Microsoft_VisualBasic_ErrObject: never;
517
+
500
518
  Description: string;
501
519
  readonly Erl: int;
502
520
  HelpContext: int;
@@ -517,6 +535,8 @@ export const ErrObject: {
517
535
  export type ErrObject = ErrObject$instance;
518
536
 
519
537
  export interface FileSystem$instance {
538
+ readonly __tsonic_type_Microsoft_VisualBasic_FileSystem: never;
539
+
520
540
  }
521
541
 
522
542
 
@@ -610,6 +630,8 @@ export const FileSystem: {
610
630
  export type FileSystem = FileSystem$instance;
611
631
 
612
632
  export interface Financial$instance {
633
+ readonly __tsonic_type_Microsoft_VisualBasic_Financial: never;
634
+
613
635
  }
614
636
 
615
637
 
@@ -633,6 +655,8 @@ export const Financial: {
633
655
  export type Financial = Financial$instance;
634
656
 
635
657
  export interface HideModuleNameAttribute$instance extends Attribute {
658
+ readonly __tsonic_type_Microsoft_VisualBasic_HideModuleNameAttribute: never;
659
+
636
660
  }
637
661
 
638
662
 
@@ -644,6 +668,8 @@ export const HideModuleNameAttribute: {
644
668
  export type HideModuleNameAttribute = HideModuleNameAttribute$instance;
645
669
 
646
670
  export interface Information$instance {
671
+ readonly __tsonic_type_Microsoft_VisualBasic_Information: never;
672
+
647
673
  }
648
674
 
649
675
 
@@ -671,6 +697,8 @@ export const Information: {
671
697
  export type Information = Information$instance;
672
698
 
673
699
  export interface Interaction$instance {
700
+ readonly __tsonic_type_Microsoft_VisualBasic_Interaction: never;
701
+
674
702
  }
675
703
 
676
704
 
@@ -701,6 +729,8 @@ export const Interaction: {
701
729
  export type Interaction = Interaction$instance;
702
730
 
703
731
  export interface MyGroupCollectionAttribute$instance extends Attribute {
732
+ readonly __tsonic_type_Microsoft_VisualBasic_MyGroupCollectionAttribute: never;
733
+
704
734
  readonly CreateMethod: string;
705
735
  readonly DefaultInstanceAlias: string;
706
736
  readonly DisposeMethod: string;
@@ -716,6 +746,8 @@ export const MyGroupCollectionAttribute: {
716
746
  export type MyGroupCollectionAttribute = MyGroupCollectionAttribute$instance;
717
747
 
718
748
  export interface Strings$instance {
749
+ readonly __tsonic_type_Microsoft_VisualBasic_Strings: never;
750
+
719
751
  }
720
752
 
721
753
 
@@ -783,6 +815,8 @@ export const Strings: {
783
815
  export type Strings = Strings$instance;
784
816
 
785
817
  export interface VBFixedArrayAttribute$instance extends Attribute {
818
+ readonly __tsonic_type_Microsoft_VisualBasic_VBFixedArrayAttribute: never;
819
+
786
820
  readonly Bounds: int[];
787
821
  readonly Length: int;
788
822
  }
@@ -797,6 +831,8 @@ export const VBFixedArrayAttribute: {
797
831
  export type VBFixedArrayAttribute = VBFixedArrayAttribute$instance;
798
832
 
799
833
  export interface VBFixedStringAttribute$instance extends Attribute {
834
+ readonly __tsonic_type_Microsoft_VisualBasic_VBFixedStringAttribute: never;
835
+
800
836
  readonly Length: int;
801
837
  }
802
838
 
@@ -809,6 +845,8 @@ export const VBFixedStringAttribute: {
809
845
  export type VBFixedStringAttribute = VBFixedStringAttribute$instance;
810
846
 
811
847
  export interface VBMath$instance {
848
+ readonly __tsonic_type_Microsoft_VisualBasic_VBMath: never;
849
+
812
850
  }
813
851
 
814
852
 
@@ -19,6 +19,8 @@ import * as System_Internal from "../../System/internal/index.js";
19
19
  import type { Array as ClrArray, Attribute, Boolean as ClrBoolean, Byte, Char, DateTime, Decimal, Double, Exception, Int16, Int32, Int64, Object as ClrObject, SByte, Single, String as ClrString, Type, UInt16, UInt32, UInt64, Void } from "../../System/internal/index.js";
20
20
 
21
21
  export interface BooleanType$instance {
22
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_BooleanType: never;
23
+
22
24
  }
23
25
 
24
26
 
@@ -31,6 +33,8 @@ export const BooleanType: {
31
33
  export type BooleanType = BooleanType$instance;
32
34
 
33
35
  export interface ByteType$instance {
36
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_ByteType: never;
37
+
34
38
  }
35
39
 
36
40
 
@@ -43,6 +47,8 @@ export const ByteType: {
43
47
  export type ByteType = ByteType$instance;
44
48
 
45
49
  export interface CharArrayType$instance {
50
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_CharArrayType: never;
51
+
46
52
  }
47
53
 
48
54
 
@@ -55,6 +61,8 @@ export const CharArrayType: {
55
61
  export type CharArrayType = CharArrayType$instance;
56
62
 
57
63
  export interface CharType$instance {
64
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_CharType: never;
65
+
58
66
  }
59
67
 
60
68
 
@@ -67,6 +75,8 @@ export const CharType: {
67
75
  export type CharType = CharType$instance;
68
76
 
69
77
  export interface Conversions$instance {
78
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_Conversions: never;
79
+
70
80
  }
71
81
 
72
82
 
@@ -130,6 +140,8 @@ export const Conversions: {
130
140
  export type Conversions = Conversions$instance;
131
141
 
132
142
  export interface DateType$instance {
143
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_DateType: never;
144
+
133
145
  }
134
146
 
135
147
 
@@ -143,6 +155,8 @@ export const DateType: {
143
155
  export type DateType = DateType$instance;
144
156
 
145
157
  export interface DecimalType$instance {
158
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_DecimalType: never;
159
+
146
160
  }
147
161
 
148
162
 
@@ -159,6 +173,8 @@ export const DecimalType: {
159
173
  export type DecimalType = DecimalType$instance;
160
174
 
161
175
  export interface DesignerGeneratedAttribute$instance extends Attribute {
176
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_DesignerGeneratedAttribute: never;
177
+
162
178
  }
163
179
 
164
180
 
@@ -170,6 +186,8 @@ export const DesignerGeneratedAttribute: {
170
186
  export type DesignerGeneratedAttribute = DesignerGeneratedAttribute$instance;
171
187
 
172
188
  export interface DoubleType$instance {
189
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_DoubleType: never;
190
+
173
191
  }
174
192
 
175
193
 
@@ -186,6 +204,8 @@ export const DoubleType: {
186
204
  export type DoubleType = DoubleType$instance;
187
205
 
188
206
  export interface IncompleteInitialization$instance extends Exception {
207
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_IncompleteInitialization: never;
208
+
189
209
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
190
210
 
191
211
  GetObjectData(info: SerializationInfo, context: StreamingContext): void;
@@ -205,6 +225,8 @@ export type IncompleteInitialization = IncompleteInitialization$instance & __Inc
205
225
 
206
226
 
207
227
  export interface IntegerType$instance {
228
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_IntegerType: never;
229
+
208
230
  }
209
231
 
210
232
 
@@ -217,6 +239,8 @@ export const IntegerType: {
217
239
  export type IntegerType = IntegerType$instance;
218
240
 
219
241
  export interface LateBinding$instance {
242
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_LateBinding: never;
243
+
220
244
  }
221
245
 
222
246
 
@@ -234,6 +258,8 @@ export const LateBinding: {
234
258
  export type LateBinding = LateBinding$instance;
235
259
 
236
260
  export interface LikeOperator$instance {
261
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_LikeOperator: never;
262
+
237
263
  }
238
264
 
239
265
 
@@ -246,6 +272,8 @@ export const LikeOperator: {
246
272
  export type LikeOperator = LikeOperator$instance;
247
273
 
248
274
  export interface LongType$instance {
275
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_LongType: never;
276
+
249
277
  }
250
278
 
251
279
 
@@ -258,6 +286,8 @@ export const LongType: {
258
286
  export type LongType = LongType$instance;
259
287
 
260
288
  export interface NewLateBinding$instance {
289
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_NewLateBinding: never;
290
+
261
291
  }
262
292
 
263
293
 
@@ -286,6 +316,8 @@ export const NewLateBinding: {
286
316
  export type NewLateBinding = NewLateBinding$instance;
287
317
 
288
318
  export interface ObjectFlowControl$instance {
319
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_ObjectFlowControl: never;
320
+
289
321
  }
290
322
 
291
323
 
@@ -297,6 +329,8 @@ export const ObjectFlowControl: {
297
329
  export type ObjectFlowControl = ObjectFlowControl$instance;
298
330
 
299
331
  export interface ObjectFlowControl_ForLoopControl$instance {
332
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_ObjectFlowControl_ForLoopControl: never;
333
+
300
334
  }
301
335
 
302
336
 
@@ -312,6 +346,8 @@ export const ObjectFlowControl_ForLoopControl: {
312
346
  export type ObjectFlowControl_ForLoopControl = ObjectFlowControl_ForLoopControl$instance;
313
347
 
314
348
  export interface ObjectType$instance {
349
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_ObjectType: never;
350
+
315
351
  }
316
352
 
317
353
 
@@ -343,6 +379,8 @@ export const ObjectType: {
343
379
  export type ObjectType = ObjectType$instance;
344
380
 
345
381
  export interface Operators$instance {
382
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_Operators: never;
383
+
346
384
  }
347
385
 
348
386
 
@@ -383,6 +421,8 @@ export const Operators: {
383
421
  export type Operators = Operators$instance;
384
422
 
385
423
  export interface OptionCompareAttribute$instance extends Attribute {
424
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_OptionCompareAttribute: never;
425
+
386
426
  }
387
427
 
388
428
 
@@ -394,6 +434,8 @@ export const OptionCompareAttribute: {
394
434
  export type OptionCompareAttribute = OptionCompareAttribute$instance;
395
435
 
396
436
  export interface OptionTextAttribute$instance extends Attribute {
437
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_OptionTextAttribute: never;
438
+
397
439
  }
398
440
 
399
441
 
@@ -405,6 +447,8 @@ export const OptionTextAttribute: {
405
447
  export type OptionTextAttribute = OptionTextAttribute$instance;
406
448
 
407
449
  export interface ProjectData$instance {
450
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_ProjectData: never;
451
+
408
452
  }
409
453
 
410
454
 
@@ -420,6 +464,8 @@ export const ProjectData: {
420
464
  export type ProjectData = ProjectData$instance;
421
465
 
422
466
  export interface ShortType$instance {
467
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_ShortType: never;
468
+
423
469
  }
424
470
 
425
471
 
@@ -432,6 +478,8 @@ export const ShortType: {
432
478
  export type ShortType = ShortType$instance;
433
479
 
434
480
  export interface SingleType$instance {
481
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_SingleType: never;
482
+
435
483
  }
436
484
 
437
485
 
@@ -446,6 +494,8 @@ export const SingleType: {
446
494
  export type SingleType = SingleType$instance;
447
495
 
448
496
  export interface StandardModuleAttribute$instance extends Attribute {
497
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_StandardModuleAttribute: never;
498
+
449
499
  }
450
500
 
451
501
 
@@ -457,6 +507,8 @@ export const StandardModuleAttribute: {
457
507
  export type StandardModuleAttribute = StandardModuleAttribute$instance;
458
508
 
459
509
  export interface StaticLocalInitFlag$instance {
510
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_StaticLocalInitFlag: never;
511
+
460
512
  State: short;
461
513
  }
462
514
 
@@ -469,6 +521,8 @@ export const StaticLocalInitFlag: {
469
521
  export type StaticLocalInitFlag = StaticLocalInitFlag$instance;
470
522
 
471
523
  export interface StringType$instance {
524
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_StringType: never;
525
+
472
526
  }
473
527
 
474
528
 
@@ -498,6 +552,8 @@ export const StringType: {
498
552
  export type StringType = StringType$instance;
499
553
 
500
554
  export interface Utils$instance {
555
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_Utils: never;
556
+
501
557
  }
502
558
 
503
559
 
@@ -510,6 +566,8 @@ export const Utils: {
510
566
  export type Utils = Utils$instance;
511
567
 
512
568
  export interface Versioned$instance {
569
+ readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_Versioned: never;
570
+
513
571
  }
514
572
 
515
573
 
@@ -53,6 +53,8 @@ export enum UIOption {
53
53
 
54
54
 
55
55
  export interface FileSystem$instance {
56
+ readonly __tsonic_type_Microsoft_VisualBasic_FileIO_FileSystem: never;
57
+
56
58
  }
57
59
 
58
60
 
@@ -119,6 +121,8 @@ export const FileSystem: {
119
121
  export type FileSystem = FileSystem$instance;
120
122
 
121
123
  export interface MalformedLineException$instance extends Exception {
124
+ readonly __tsonic_type_Microsoft_VisualBasic_FileIO_MalformedLineException: never;
125
+
122
126
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
123
127
 
124
128
  LineNumber: long;
@@ -144,6 +148,8 @@ export type MalformedLineException = MalformedLineException$instance & __Malform
144
148
 
145
149
 
146
150
  export interface SpecialDirectories$instance {
151
+ readonly __tsonic_type_Microsoft_VisualBasic_FileIO_SpecialDirectories: never;
152
+
147
153
  }
148
154
 
149
155
 
@@ -164,6 +170,8 @@ export const SpecialDirectories: {
164
170
  export type SpecialDirectories = SpecialDirectories$instance;
165
171
 
166
172
  export interface TextFieldParser$instance {
173
+ readonly __tsonic_type_Microsoft_VisualBasic_FileIO_TextFieldParser: never;
174
+
167
175
  readonly __tsonic_iface_System_IDisposable: never;
168
176
 
169
177
  CommentTokens: string[];
@@ -59,7 +59,9 @@ export enum RegistryView {
59
59
  }
60
60
 
61
61
 
62
- export interface RegistryKey$instance extends MarshalByRefObject {
62
+ export interface RegistryKey$instance extends MarshalByRefObject, System_Internal.IDisposable$instance {
63
+ readonly __tsonic_type_Microsoft_Win32_RegistryKey: never;
64
+
63
65
  readonly __tsonic_iface_System_IDisposable: never;
64
66
 
65
67
  readonly Handle: SafeRegistryHandle;
@@ -116,8 +118,6 @@ export interface __RegistryKey$views {
116
118
  As_IDisposable(): System_Internal.IDisposable$instance;
117
119
  }
118
120
 
119
- export interface RegistryKey$instance extends System_Internal.IDisposable$instance {}
120
-
121
121
  export type RegistryKey = RegistryKey$instance & __RegistryKey$views;
122
122
 
123
123
 
@@ -12,6 +12,8 @@ import * as System_Internal from "../../System/internal/index.js";
12
12
  import type { Boolean as ClrBoolean, Byte, IDisposable, Int32, IntPtr, Object as ClrObject, ReadOnlySpan_1, Span_1, String as ClrString, Type, UInt32, UInt64, Void } from "../../System/internal/index.js";
13
13
 
14
14
  export interface CriticalHandleMinusOneIsInvalid$instance extends CriticalHandle {
15
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_CriticalHandleMinusOneIsInvalid: never;
16
+
15
17
  readonly __tsonic_iface_System_IDisposable: never;
16
18
 
17
19
  readonly IsInvalid: boolean;
@@ -32,6 +34,8 @@ export type CriticalHandleMinusOneIsInvalid = CriticalHandleMinusOneIsInvalid$in
32
34
 
33
35
 
34
36
  export interface CriticalHandleZeroOrMinusOneIsInvalid$instance extends CriticalHandle {
37
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_CriticalHandleZeroOrMinusOneIsInvalid: never;
38
+
35
39
  readonly __tsonic_iface_System_IDisposable: never;
36
40
 
37
41
  readonly IsInvalid: boolean;
@@ -52,6 +56,8 @@ export type CriticalHandleZeroOrMinusOneIsInvalid = CriticalHandleZeroOrMinusOne
52
56
 
53
57
 
54
58
  export interface SafeAccessTokenHandle$instance extends SafeHandle {
59
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeAccessTokenHandle: never;
60
+
55
61
  readonly __tsonic_iface_System_IDisposable: never;
56
62
 
57
63
  readonly IsInvalid: boolean;
@@ -76,6 +82,8 @@ export type SafeAccessTokenHandle = SafeAccessTokenHandle$instance & __SafeAcces
76
82
 
77
83
 
78
84
  export interface SafeFileHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
85
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeFileHandle: never;
86
+
79
87
  readonly __tsonic_iface_System_IDisposable: never;
80
88
 
81
89
  IsAsync: boolean;
@@ -100,6 +108,8 @@ export type SafeFileHandle = SafeFileHandle$instance & __SafeFileHandle$views;
100
108
 
101
109
 
102
110
  export interface SafeHandleMinusOneIsInvalid$instance extends SafeHandle {
111
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeHandleMinusOneIsInvalid: never;
112
+
103
113
  readonly __tsonic_iface_System_IDisposable: never;
104
114
 
105
115
  readonly IsInvalid: boolean;
@@ -120,6 +130,8 @@ export type SafeHandleMinusOneIsInvalid = SafeHandleMinusOneIsInvalid$instance &
120
130
 
121
131
 
122
132
  export interface SafeHandleZeroOrMinusOneIsInvalid$instance extends SafeHandle {
133
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeHandleZeroOrMinusOneIsInvalid: never;
134
+
123
135
  readonly __tsonic_iface_System_IDisposable: never;
124
136
 
125
137
  readonly IsInvalid: boolean;
@@ -140,6 +152,8 @@ export type SafeHandleZeroOrMinusOneIsInvalid = SafeHandleZeroOrMinusOneIsInvali
140
152
 
141
153
 
142
154
  export interface SafeMemoryMappedFileHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
155
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeMemoryMappedFileHandle: never;
156
+
143
157
  readonly __tsonic_iface_System_IDisposable: never;
144
158
 
145
159
  readonly IsInvalid: boolean;
@@ -162,6 +176,8 @@ export type SafeMemoryMappedFileHandle = SafeMemoryMappedFileHandle$instance & _
162
176
 
163
177
 
164
178
  export interface SafeMemoryMappedViewHandle$instance extends SafeBuffer {
179
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeMemoryMappedViewHandle: never;
180
+
165
181
  readonly __tsonic_iface_System_IDisposable: never;
166
182
 
167
183
  Dispose(): void;
@@ -183,6 +199,8 @@ export type SafeMemoryMappedViewHandle = SafeMemoryMappedViewHandle$instance & _
183
199
 
184
200
 
185
201
  export interface SafeNCryptHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
202
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeNCryptHandle: never;
203
+
186
204
  readonly __tsonic_iface_System_IDisposable: never;
187
205
 
188
206
  Dispose(): void;
@@ -204,6 +222,8 @@ export type SafeNCryptHandle = SafeNCryptHandle$instance & __SafeNCryptHandle$vi
204
222
 
205
223
 
206
224
  export interface SafeNCryptKeyHandle$instance extends SafeNCryptHandle$instance {
225
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeNCryptKeyHandle: never;
226
+
207
227
  readonly __tsonic_iface_System_IDisposable: never;
208
228
 
209
229
  Dispose(): void;
@@ -226,6 +246,8 @@ export type SafeNCryptKeyHandle = SafeNCryptKeyHandle$instance & __SafeNCryptKey
226
246
 
227
247
 
228
248
  export interface SafeNCryptProviderHandle$instance extends SafeNCryptHandle$instance {
249
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeNCryptProviderHandle: never;
250
+
229
251
  readonly __tsonic_iface_System_IDisposable: never;
230
252
 
231
253
  Dispose(): void;
@@ -247,6 +269,8 @@ export type SafeNCryptProviderHandle = SafeNCryptProviderHandle$instance & __Saf
247
269
 
248
270
 
249
271
  export interface SafeNCryptSecretHandle$instance extends SafeNCryptHandle$instance {
272
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeNCryptSecretHandle: never;
273
+
250
274
  readonly __tsonic_iface_System_IDisposable: never;
251
275
 
252
276
  Dispose(): void;
@@ -268,6 +292,8 @@ export type SafeNCryptSecretHandle = SafeNCryptSecretHandle$instance & __SafeNCr
268
292
 
269
293
 
270
294
  export interface SafePipeHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
295
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafePipeHandle: never;
296
+
271
297
  readonly __tsonic_iface_System_IDisposable: never;
272
298
 
273
299
  readonly IsInvalid: boolean;
@@ -291,6 +317,8 @@ export type SafePipeHandle = SafePipeHandle$instance & __SafePipeHandle$views;
291
317
 
292
318
 
293
319
  export interface SafeProcessHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
320
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeProcessHandle: never;
321
+
294
322
  readonly __tsonic_iface_System_IDisposable: never;
295
323
 
296
324
  Dispose(): void;
@@ -313,6 +341,8 @@ export type SafeProcessHandle = SafeProcessHandle$instance & __SafeProcessHandle
313
341
 
314
342
 
315
343
  export interface SafeRegistryHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
344
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeRegistryHandle: never;
345
+
316
346
  readonly __tsonic_iface_System_IDisposable: never;
317
347
 
318
348
  Dispose(): void;
@@ -335,6 +365,8 @@ export type SafeRegistryHandle = SafeRegistryHandle$instance & __SafeRegistryHan
335
365
 
336
366
 
337
367
  export interface SafeWaitHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
368
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeWaitHandle: never;
369
+
338
370
  readonly __tsonic_iface_System_IDisposable: never;
339
371
 
340
372
  Dispose(): void;
@@ -357,6 +389,8 @@ export type SafeWaitHandle = SafeWaitHandle$instance & __SafeWaitHandle$views;
357
389
 
358
390
 
359
391
  export interface SafeX509ChainHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
392
+ readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeX509ChainHandle: never;
393
+
360
394
  readonly __tsonic_iface_System_IDisposable: never;
361
395
 
362
396
  Dispose(disposing: boolean): void;