@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
@@ -407,6 +407,8 @@ export interface IDynamicInterfaceCastable$instance {
407
407
  export type IDynamicInterfaceCastable = IDynamicInterfaceCastable$instance;
408
408
 
409
409
  export interface ArrayWithOffset$instance {
410
+ readonly __tsonic_type_System_Runtime_InteropServices_ArrayWithOffset: never;
411
+
410
412
  readonly __tsonic_iface_System_IEquatable_1: never;
411
413
 
412
414
  Equals(obj: unknown): boolean;
@@ -433,6 +435,8 @@ export type ArrayWithOffset = ArrayWithOffset$instance & __ArrayWithOffset$views
433
435
 
434
436
 
435
437
  export interface CLong$instance {
438
+ readonly __tsonic_type_System_Runtime_InteropServices_CLong: never;
439
+
436
440
  readonly __tsonic_iface_System_IEquatable_1: never;
437
441
 
438
442
  readonly Value: nint;
@@ -460,6 +464,8 @@ export type CLong = CLong$instance & __CLong$views;
460
464
 
461
465
 
462
466
  export interface ComWrappers_ComInterfaceDispatch$instance {
467
+ readonly __tsonic_type_System_Runtime_InteropServices_ComWrappers_ComInterfaceDispatch: never;
468
+
463
469
  Vtable: nint;
464
470
  }
465
471
 
@@ -473,6 +479,8 @@ export const ComWrappers_ComInterfaceDispatch: {
473
479
  export type ComWrappers_ComInterfaceDispatch = ComWrappers_ComInterfaceDispatch$instance;
474
480
 
475
481
  export interface ComWrappers_ComInterfaceEntry$instance {
482
+ readonly __tsonic_type_System_Runtime_InteropServices_ComWrappers_ComInterfaceEntry: never;
483
+
476
484
  IID: Guid;
477
485
  Vtable: nint;
478
486
  }
@@ -486,6 +494,8 @@ export const ComWrappers_ComInterfaceEntry: {
486
494
  export type ComWrappers_ComInterfaceEntry = ComWrappers_ComInterfaceEntry$instance;
487
495
 
488
496
  export interface CULong$instance {
497
+ readonly __tsonic_type_System_Runtime_InteropServices_CULong: never;
498
+
489
499
  readonly __tsonic_iface_System_IEquatable_1: never;
490
500
 
491
501
  readonly Value: nuint;
@@ -513,6 +523,8 @@ export type CULong = CULong$instance & __CULong$views;
513
523
 
514
524
 
515
525
  export interface GCHandle$instance {
526
+ readonly __tsonic_type_System_Runtime_InteropServices_GCHandle: never;
527
+
516
528
  readonly __tsonic_iface_System_IEquatable_1: never;
517
529
 
518
530
  readonly IsAllocated: boolean;
@@ -545,7 +557,9 @@ export interface __GCHandle$views {
545
557
  export type GCHandle = GCHandle$instance & __GCHandle$views;
546
558
 
547
559
 
548
- export interface GCHandle_1$instance<T> {
560
+ export interface GCHandle_1$instance<T> extends System_Internal.IDisposable$instance {
561
+ readonly __tsonic_type_System_Runtime_InteropServices_GCHandle_1: never;
562
+
549
563
  readonly __tsonic_iface_System_IDisposable: never;
550
564
  readonly __tsonic_iface_System_IEquatable_1: never;
551
565
 
@@ -573,12 +587,12 @@ export interface __GCHandle_1$views<T> {
573
587
  Equals(other: GCHandle_1<T>): boolean;
574
588
  }
575
589
 
576
- export interface GCHandle_1$instance<T> extends System_Internal.IDisposable$instance {}
577
-
578
590
  export type GCHandle_1<T> = GCHandle_1$instance<T> & __GCHandle_1$views<T>;
579
591
 
580
592
 
581
593
  export interface HandleRef$instance {
594
+ readonly __tsonic_type_System_Runtime_InteropServices_HandleRef: never;
595
+
582
596
  readonly Handle: nint;
583
597
  readonly Wrapper: unknown | undefined;
584
598
  }
@@ -593,6 +607,8 @@ export const HandleRef: {
593
607
  export type HandleRef = HandleRef$instance;
594
608
 
595
609
  export interface NFloat$instance extends IBitwiseOperators_3<NFloat, NFloat, NFloat>, IComparisonOperators_3<NFloat, NFloat, System_Internal.Boolean>, IEqualityOperators_3<NFloat, NFloat, System_Internal.Boolean>, IModulusOperators_3<NFloat, NFloat, NFloat>, IAdditionOperators_3<NFloat, NFloat, NFloat>, IDecrementOperators_1<NFloat>, IDivisionOperators_3<NFloat, NFloat, NFloat>, IIncrementOperators_1<NFloat>, IMultiplyOperators_3<NFloat, NFloat, NFloat>, ISubtractionOperators_3<NFloat, NFloat, NFloat>, IUnaryPlusOperators_2<NFloat, NFloat>, IUnaryNegationOperators_2<NFloat, NFloat> {
610
+ readonly __tsonic_type_System_Runtime_InteropServices_NFloat: never;
611
+
596
612
  readonly __tsonic_iface_System_IComparable: never;
597
613
  readonly __tsonic_iface_System_IComparable_1: never;
598
614
  readonly __tsonic_iface_System_IEquatable_1: never;
@@ -805,12 +821,12 @@ export interface __NFloat$views {
805
821
  WriteExponentBigEndian(destination: import("../../System/internal/index").Span_1<import("../../System/internal/index").Byte>): int;
806
822
  }
807
823
 
808
- export interface NFloat$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<NFloat> {}
809
-
810
824
  export type NFloat = NFloat$instance & __NFloat$views;
811
825
 
812
826
 
813
827
  export interface OSPlatform$instance {
828
+ readonly __tsonic_type_System_Runtime_InteropServices_OSPlatform: never;
829
+
814
830
  readonly __tsonic_iface_System_IEquatable_1: never;
815
831
 
816
832
  Equals(other: OSPlatform): boolean;
@@ -840,7 +856,9 @@ export interface __OSPlatform$views {
840
856
  export type OSPlatform = OSPlatform$instance & __OSPlatform$views;
841
857
 
842
858
 
843
- export interface PinnedGCHandle_1$instance<T> {
859
+ export interface PinnedGCHandle_1$instance<T> extends System_Internal.IDisposable$instance {
860
+ readonly __tsonic_type_System_Runtime_InteropServices_PinnedGCHandle_1: never;
861
+
844
862
  readonly __tsonic_iface_System_IDisposable: never;
845
863
  readonly __tsonic_iface_System_IEquatable_1: never;
846
864
 
@@ -869,12 +887,12 @@ export interface __PinnedGCHandle_1$views<T> {
869
887
  Equals(other: PinnedGCHandle_1<T>): boolean;
870
888
  }
871
889
 
872
- export interface PinnedGCHandle_1$instance<T> extends System_Internal.IDisposable$instance {}
873
-
874
890
  export type PinnedGCHandle_1<T> = PinnedGCHandle_1$instance<T> & __PinnedGCHandle_1$views<T>;
875
891
 
876
892
 
877
- export interface WeakGCHandle_1$instance<T> {
893
+ export interface WeakGCHandle_1$instance<T> extends System_Internal.IDisposable$instance {
894
+ readonly __tsonic_type_System_Runtime_InteropServices_WeakGCHandle_1: never;
895
+
878
896
  readonly __tsonic_iface_System_IDisposable: never;
879
897
  readonly __tsonic_iface_System_IEquatable_1: never;
880
898
 
@@ -903,12 +921,12 @@ export interface __WeakGCHandle_1$views<T> {
903
921
  Equals(other: WeakGCHandle_1<T>): boolean;
904
922
  }
905
923
 
906
- export interface WeakGCHandle_1$instance<T> extends System_Internal.IDisposable$instance {}
907
-
908
924
  export type WeakGCHandle_1<T> = WeakGCHandle_1$instance<T> & __WeakGCHandle_1$views<T>;
909
925
 
910
926
 
911
927
  export interface AllowReversePInvokeCallsAttribute$instance extends Attribute {
928
+ readonly __tsonic_type_System_Runtime_InteropServices_AllowReversePInvokeCallsAttribute: never;
929
+
912
930
  }
913
931
 
914
932
 
@@ -920,6 +938,8 @@ export const AllowReversePInvokeCallsAttribute: {
920
938
  export type AllowReversePInvokeCallsAttribute = AllowReversePInvokeCallsAttribute$instance;
921
939
 
922
940
  export interface AutomationProxyAttribute$instance extends Attribute {
941
+ readonly __tsonic_type_System_Runtime_InteropServices_AutomationProxyAttribute: never;
942
+
923
943
  readonly Value: boolean;
924
944
  }
925
945
 
@@ -932,6 +952,8 @@ export const AutomationProxyAttribute: {
932
952
  export type AutomationProxyAttribute = AutomationProxyAttribute$instance;
933
953
 
934
954
  export interface BestFitMappingAttribute$instance extends Attribute {
955
+ readonly __tsonic_type_System_Runtime_InteropServices_BestFitMappingAttribute: never;
956
+
935
957
  ThrowOnUnmappableChar: boolean;
936
958
  readonly BestFitMapping: boolean;
937
959
  }
@@ -945,6 +967,8 @@ export const BestFitMappingAttribute: {
945
967
  export type BestFitMappingAttribute = BestFitMappingAttribute$instance;
946
968
 
947
969
  export interface BStrWrapper$instance {
970
+ readonly __tsonic_type_System_Runtime_InteropServices_BStrWrapper: never;
971
+
948
972
  readonly WrappedObject: string | undefined;
949
973
  }
950
974
 
@@ -958,6 +982,8 @@ export const BStrWrapper: {
958
982
  export type BStrWrapper = BStrWrapper$instance;
959
983
 
960
984
  export interface ClassInterfaceAttribute$instance extends Attribute {
985
+ readonly __tsonic_type_System_Runtime_InteropServices_ClassInterfaceAttribute: never;
986
+
961
987
  readonly Value: ClassInterfaceType;
962
988
  }
963
989
 
@@ -971,6 +997,8 @@ export const ClassInterfaceAttribute: {
971
997
  export type ClassInterfaceAttribute = ClassInterfaceAttribute$instance;
972
998
 
973
999
  export interface CoClassAttribute$instance extends Attribute {
1000
+ readonly __tsonic_type_System_Runtime_InteropServices_CoClassAttribute: never;
1001
+
974
1002
  readonly CoClass: Type;
975
1003
  }
976
1004
 
@@ -983,6 +1011,8 @@ export const CoClassAttribute: {
983
1011
  export type CoClassAttribute = CoClassAttribute$instance;
984
1012
 
985
1013
  export interface ComAliasNameAttribute$instance extends Attribute {
1014
+ readonly __tsonic_type_System_Runtime_InteropServices_ComAliasNameAttribute: never;
1015
+
986
1016
  readonly Value: string;
987
1017
  }
988
1018
 
@@ -995,6 +1025,8 @@ export const ComAliasNameAttribute: {
995
1025
  export type ComAliasNameAttribute = ComAliasNameAttribute$instance;
996
1026
 
997
1027
  export interface ComAwareEventInfo$instance extends EventInfo {
1028
+ readonly __tsonic_type_System_Runtime_InteropServices_ComAwareEventInfo: never;
1029
+
998
1030
  readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
999
1031
 
1000
1032
  readonly Attributes: EventAttributes;
@@ -1034,6 +1066,8 @@ export type ComAwareEventInfo = ComAwareEventInfo$instance & __ComAwareEventInfo
1034
1066
 
1035
1067
 
1036
1068
  export interface ComCompatibleVersionAttribute$instance extends Attribute {
1069
+ readonly __tsonic_type_System_Runtime_InteropServices_ComCompatibleVersionAttribute: never;
1070
+
1037
1071
  readonly BuildNumber: int;
1038
1072
  readonly MajorVersion: int;
1039
1073
  readonly MinorVersion: int;
@@ -1049,6 +1083,8 @@ export const ComCompatibleVersionAttribute: {
1049
1083
  export type ComCompatibleVersionAttribute = ComCompatibleVersionAttribute$instance;
1050
1084
 
1051
1085
  export interface ComConversionLossAttribute$instance extends Attribute {
1086
+ readonly __tsonic_type_System_Runtime_InteropServices_ComConversionLossAttribute: never;
1087
+
1052
1088
  }
1053
1089
 
1054
1090
 
@@ -1060,6 +1096,8 @@ export const ComConversionLossAttribute: {
1060
1096
  export type ComConversionLossAttribute = ComConversionLossAttribute$instance;
1061
1097
 
1062
1098
  export interface ComDefaultInterfaceAttribute$instance extends Attribute {
1099
+ readonly __tsonic_type_System_Runtime_InteropServices_ComDefaultInterfaceAttribute: never;
1100
+
1063
1101
  readonly Value: Type;
1064
1102
  }
1065
1103
 
@@ -1072,6 +1110,8 @@ export const ComDefaultInterfaceAttribute: {
1072
1110
  export type ComDefaultInterfaceAttribute = ComDefaultInterfaceAttribute$instance;
1073
1111
 
1074
1112
  export interface ComEventInterfaceAttribute$instance extends Attribute {
1113
+ readonly __tsonic_type_System_Runtime_InteropServices_ComEventInterfaceAttribute: never;
1114
+
1075
1115
  readonly EventProvider: Type;
1076
1116
  readonly SourceInterface: Type;
1077
1117
  }
@@ -1085,6 +1125,8 @@ export const ComEventInterfaceAttribute: {
1085
1125
  export type ComEventInterfaceAttribute = ComEventInterfaceAttribute$instance;
1086
1126
 
1087
1127
  export interface COMException$instance extends ExternalException$instance {
1128
+ readonly __tsonic_type_System_Runtime_InteropServices_COMException: never;
1129
+
1088
1130
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
1089
1131
 
1090
1132
  GetObjectData(info: SerializationInfo, context: StreamingContext): void;
@@ -1108,6 +1150,8 @@ export type COMException = COMException$instance & __COMException$views;
1108
1150
 
1109
1151
 
1110
1152
  export interface ComImportAttribute$instance extends Attribute {
1153
+ readonly __tsonic_type_System_Runtime_InteropServices_ComImportAttribute: never;
1154
+
1111
1155
  }
1112
1156
 
1113
1157
 
@@ -1119,6 +1163,8 @@ export const ComImportAttribute: {
1119
1163
  export type ComImportAttribute = ComImportAttribute$instance;
1120
1164
 
1121
1165
  export interface ComRegisterFunctionAttribute$instance extends Attribute {
1166
+ readonly __tsonic_type_System_Runtime_InteropServices_ComRegisterFunctionAttribute: never;
1167
+
1122
1168
  }
1123
1169
 
1124
1170
 
@@ -1130,6 +1176,8 @@ export const ComRegisterFunctionAttribute: {
1130
1176
  export type ComRegisterFunctionAttribute = ComRegisterFunctionAttribute$instance;
1131
1177
 
1132
1178
  export interface ComSourceInterfacesAttribute$instance extends Attribute {
1179
+ readonly __tsonic_type_System_Runtime_InteropServices_ComSourceInterfacesAttribute: never;
1180
+
1133
1181
  readonly Value: string;
1134
1182
  }
1135
1183
 
@@ -1146,6 +1194,8 @@ export const ComSourceInterfacesAttribute: {
1146
1194
  export type ComSourceInterfacesAttribute = ComSourceInterfacesAttribute$instance;
1147
1195
 
1148
1196
  export interface ComUnregisterFunctionAttribute$instance extends Attribute {
1197
+ readonly __tsonic_type_System_Runtime_InteropServices_ComUnregisterFunctionAttribute: never;
1198
+
1149
1199
  }
1150
1200
 
1151
1201
 
@@ -1157,6 +1207,8 @@ export const ComUnregisterFunctionAttribute: {
1157
1207
  export type ComUnregisterFunctionAttribute = ComUnregisterFunctionAttribute$instance;
1158
1208
 
1159
1209
  export interface ComVisibleAttribute$instance extends Attribute {
1210
+ readonly __tsonic_type_System_Runtime_InteropServices_ComVisibleAttribute: never;
1211
+
1160
1212
  readonly Value: boolean;
1161
1213
  }
1162
1214
 
@@ -1169,6 +1221,8 @@ export const ComVisibleAttribute: {
1169
1221
  export type ComVisibleAttribute = ComVisibleAttribute$instance;
1170
1222
 
1171
1223
  export interface ComWrappers$instance {
1224
+ readonly __tsonic_type_System_Runtime_InteropServices_ComWrappers: never;
1225
+
1172
1226
  ComputeVtables(obj: unknown, flags: CreateComInterfaceFlags, count: int): ptr<ComWrappers_ComInterfaceEntry>;
1173
1227
  CreateObject(externalComObject: nint, flags: CreateObjectFlags): unknown | undefined;
1174
1228
  CreateObject(externalComObject: nint, flags: CreateObjectFlags, userState: unknown, wrapperFlags: CreatedWrapperFlags): unknown | undefined;
@@ -1193,6 +1247,8 @@ export const ComWrappers: (abstract new() => ComWrappers) & {
1193
1247
  export type ComWrappers = ComWrappers$instance;
1194
1248
 
1195
1249
  export interface CriticalHandle$instance extends CriticalFinalizerObject {
1250
+ readonly __tsonic_type_System_Runtime_InteropServices_CriticalHandle: never;
1251
+
1196
1252
  readonly __tsonic_iface_System_IDisposable: never;
1197
1253
 
1198
1254
  readonly IsClosed: boolean;
@@ -1218,6 +1274,8 @@ export type CriticalHandle = CriticalHandle$instance & __CriticalHandle$views;
1218
1274
 
1219
1275
 
1220
1276
  export interface CurrencyWrapper$instance {
1277
+ readonly __tsonic_type_System_Runtime_InteropServices_CurrencyWrapper: never;
1278
+
1221
1279
  readonly WrappedObject: decimal;
1222
1280
  }
1223
1281
 
@@ -1231,6 +1289,8 @@ export const CurrencyWrapper: {
1231
1289
  export type CurrencyWrapper = CurrencyWrapper$instance;
1232
1290
 
1233
1291
  export interface DefaultCharSetAttribute$instance extends Attribute {
1292
+ readonly __tsonic_type_System_Runtime_InteropServices_DefaultCharSetAttribute: never;
1293
+
1234
1294
  readonly CharSet: CharSet;
1235
1295
  }
1236
1296
 
@@ -1243,6 +1303,8 @@ export const DefaultCharSetAttribute: {
1243
1303
  export type DefaultCharSetAttribute = DefaultCharSetAttribute$instance;
1244
1304
 
1245
1305
  export interface DefaultDllImportSearchPathsAttribute$instance extends Attribute {
1306
+ readonly __tsonic_type_System_Runtime_InteropServices_DefaultDllImportSearchPathsAttribute: never;
1307
+
1246
1308
  readonly Paths: DllImportSearchPath;
1247
1309
  }
1248
1310
 
@@ -1255,6 +1317,8 @@ export const DefaultDllImportSearchPathsAttribute: {
1255
1317
  export type DefaultDllImportSearchPathsAttribute = DefaultDllImportSearchPathsAttribute$instance;
1256
1318
 
1257
1319
  export interface DefaultParameterValueAttribute$instance extends Attribute {
1320
+ readonly __tsonic_type_System_Runtime_InteropServices_DefaultParameterValueAttribute: never;
1321
+
1258
1322
  readonly Value: unknown | undefined;
1259
1323
  }
1260
1324
 
@@ -1267,6 +1331,8 @@ export const DefaultParameterValueAttribute: {
1267
1331
  export type DefaultParameterValueAttribute = DefaultParameterValueAttribute$instance;
1268
1332
 
1269
1333
  export interface DispatchWrapper$instance {
1334
+ readonly __tsonic_type_System_Runtime_InteropServices_DispatchWrapper: never;
1335
+
1270
1336
  readonly WrappedObject: unknown | undefined;
1271
1337
  }
1272
1338
 
@@ -1279,6 +1345,8 @@ export const DispatchWrapper: {
1279
1345
  export type DispatchWrapper = DispatchWrapper$instance;
1280
1346
 
1281
1347
  export interface DispIdAttribute$instance extends Attribute {
1348
+ readonly __tsonic_type_System_Runtime_InteropServices_DispIdAttribute: never;
1349
+
1282
1350
  readonly Value: int;
1283
1351
  }
1284
1352
 
@@ -1291,6 +1359,8 @@ export const DispIdAttribute: {
1291
1359
  export type DispIdAttribute = DispIdAttribute$instance;
1292
1360
 
1293
1361
  export interface DllImportAttribute$instance extends Attribute {
1362
+ readonly __tsonic_type_System_Runtime_InteropServices_DllImportAttribute: never;
1363
+
1294
1364
  EntryPoint: string | undefined;
1295
1365
  CharSet: CharSet;
1296
1366
  SetLastError: boolean;
@@ -1311,6 +1381,8 @@ export const DllImportAttribute: {
1311
1381
  export type DllImportAttribute = DllImportAttribute$instance;
1312
1382
 
1313
1383
  export interface DynamicInterfaceCastableImplementationAttribute$instance extends Attribute {
1384
+ readonly __tsonic_type_System_Runtime_InteropServices_DynamicInterfaceCastableImplementationAttribute: never;
1385
+
1314
1386
  }
1315
1387
 
1316
1388
 
@@ -1322,6 +1394,8 @@ export const DynamicInterfaceCastableImplementationAttribute: {
1322
1394
  export type DynamicInterfaceCastableImplementationAttribute = DynamicInterfaceCastableImplementationAttribute$instance;
1323
1395
 
1324
1396
  export interface ErrorWrapper$instance {
1397
+ readonly __tsonic_type_System_Runtime_InteropServices_ErrorWrapper: never;
1398
+
1325
1399
  readonly ErrorCode: int;
1326
1400
  }
1327
1401
 
@@ -1336,6 +1410,8 @@ export const ErrorWrapper: {
1336
1410
  export type ErrorWrapper = ErrorWrapper$instance;
1337
1411
 
1338
1412
  export interface ExternalException$instance extends SystemException {
1413
+ readonly __tsonic_type_System_Runtime_InteropServices_ExternalException: never;
1414
+
1339
1415
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
1340
1416
 
1341
1417
  readonly ErrorCode: int;
@@ -1360,6 +1436,8 @@ export type ExternalException = ExternalException$instance & __ExternalException
1360
1436
 
1361
1437
 
1362
1438
  export interface FieldOffsetAttribute$instance extends Attribute {
1439
+ readonly __tsonic_type_System_Runtime_InteropServices_FieldOffsetAttribute: never;
1440
+
1363
1441
  readonly Value: int;
1364
1442
  }
1365
1443
 
@@ -1372,6 +1450,8 @@ export const FieldOffsetAttribute: {
1372
1450
  export type FieldOffsetAttribute = FieldOffsetAttribute$instance;
1373
1451
 
1374
1452
  export interface GuidAttribute$instance extends Attribute {
1453
+ readonly __tsonic_type_System_Runtime_InteropServices_GuidAttribute: never;
1454
+
1375
1455
  readonly Value: string;
1376
1456
  }
1377
1457
 
@@ -1384,6 +1464,8 @@ export const GuidAttribute: {
1384
1464
  export type GuidAttribute = GuidAttribute$instance;
1385
1465
 
1386
1466
  export interface HandleCollector$instance {
1467
+ readonly __tsonic_type_System_Runtime_InteropServices_HandleCollector: never;
1468
+
1387
1469
  readonly Count: int;
1388
1470
  readonly InitialThreshold: int;
1389
1471
  readonly MaximumThreshold: int;
@@ -1402,6 +1484,8 @@ export const HandleCollector: {
1402
1484
  export type HandleCollector = HandleCollector$instance;
1403
1485
 
1404
1486
  export interface ImportedFromTypeLibAttribute$instance extends Attribute {
1487
+ readonly __tsonic_type_System_Runtime_InteropServices_ImportedFromTypeLibAttribute: never;
1488
+
1405
1489
  readonly Value: string;
1406
1490
  }
1407
1491
 
@@ -1414,6 +1498,8 @@ export const ImportedFromTypeLibAttribute: {
1414
1498
  export type ImportedFromTypeLibAttribute = ImportedFromTypeLibAttribute$instance;
1415
1499
 
1416
1500
  export interface InAttribute$instance extends Attribute {
1501
+ readonly __tsonic_type_System_Runtime_InteropServices_InAttribute: never;
1502
+
1417
1503
  }
1418
1504
 
1419
1505
 
@@ -1425,6 +1511,8 @@ export const InAttribute: {
1425
1511
  export type InAttribute = InAttribute$instance;
1426
1512
 
1427
1513
  export interface InterfaceTypeAttribute$instance extends Attribute {
1514
+ readonly __tsonic_type_System_Runtime_InteropServices_InterfaceTypeAttribute: never;
1515
+
1428
1516
  readonly Value: ComInterfaceType;
1429
1517
  }
1430
1518
 
@@ -1438,6 +1526,8 @@ export const InterfaceTypeAttribute: {
1438
1526
  export type InterfaceTypeAttribute = InterfaceTypeAttribute$instance;
1439
1527
 
1440
1528
  export interface InvalidComObjectException$instance extends SystemException {
1529
+ readonly __tsonic_type_System_Runtime_InteropServices_InvalidComObjectException: never;
1530
+
1441
1531
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
1442
1532
 
1443
1533
  GetObjectData(info: SerializationInfo, context: StreamingContext): void;
@@ -1459,6 +1549,8 @@ export type InvalidComObjectException = InvalidComObjectException$instance & __I
1459
1549
 
1460
1550
 
1461
1551
  export interface InvalidOleVariantTypeException$instance extends SystemException {
1552
+ readonly __tsonic_type_System_Runtime_InteropServices_InvalidOleVariantTypeException: never;
1553
+
1462
1554
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
1463
1555
 
1464
1556
  GetObjectData(info: SerializationInfo, context: StreamingContext): void;
@@ -1480,6 +1572,8 @@ export type InvalidOleVariantTypeException = InvalidOleVariantTypeException$inst
1480
1572
 
1481
1573
 
1482
1574
  export interface LCIDConversionAttribute$instance extends Attribute {
1575
+ readonly __tsonic_type_System_Runtime_InteropServices_LCIDConversionAttribute: never;
1576
+
1483
1577
  readonly Value: int;
1484
1578
  }
1485
1579
 
@@ -1492,6 +1586,8 @@ export const LCIDConversionAttribute: {
1492
1586
  export type LCIDConversionAttribute = LCIDConversionAttribute$instance;
1493
1587
 
1494
1588
  export interface LibraryImportAttribute$instance extends Attribute {
1589
+ readonly __tsonic_type_System_Runtime_InteropServices_LibraryImportAttribute: never;
1590
+
1495
1591
  get EntryPoint(): string | undefined;
1496
1592
  set EntryPoint(value: string | undefined);
1497
1593
  readonly LibraryName: string;
@@ -1510,6 +1606,8 @@ export const LibraryImportAttribute: {
1510
1606
  export type LibraryImportAttribute = LibraryImportAttribute$instance;
1511
1607
 
1512
1608
  export interface ManagedToNativeComInteropStubAttribute$instance extends Attribute {
1609
+ readonly __tsonic_type_System_Runtime_InteropServices_ManagedToNativeComInteropStubAttribute: never;
1610
+
1513
1611
  readonly ClassType: Type;
1514
1612
  readonly MethodName: string;
1515
1613
  }
@@ -1523,6 +1621,8 @@ export const ManagedToNativeComInteropStubAttribute: {
1523
1621
  export type ManagedToNativeComInteropStubAttribute = ManagedToNativeComInteropStubAttribute$instance;
1524
1622
 
1525
1623
  export interface MarshalAsAttribute$instance extends Attribute {
1624
+ readonly __tsonic_type_System_Runtime_InteropServices_MarshalAsAttribute: never;
1625
+
1526
1626
  SafeArraySubType: VarEnum;
1527
1627
  SafeArrayUserDefinedSubType: Type | undefined;
1528
1628
  IidParameterIndex: int;
@@ -1545,6 +1645,8 @@ export const MarshalAsAttribute: {
1545
1645
  export type MarshalAsAttribute = MarshalAsAttribute$instance;
1546
1646
 
1547
1647
  export interface MarshalDirectiveException$instance extends SystemException {
1648
+ readonly __tsonic_type_System_Runtime_InteropServices_MarshalDirectiveException: never;
1649
+
1548
1650
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
1549
1651
 
1550
1652
  GetObjectData(info: SerializationInfo, context: StreamingContext): void;
@@ -1566,6 +1668,8 @@ export type MarshalDirectiveException = MarshalDirectiveException$instance & __M
1566
1668
 
1567
1669
 
1568
1670
  export interface OptionalAttribute$instance extends Attribute {
1671
+ readonly __tsonic_type_System_Runtime_InteropServices_OptionalAttribute: never;
1672
+
1569
1673
  }
1570
1674
 
1571
1675
 
@@ -1577,6 +1681,8 @@ export const OptionalAttribute: {
1577
1681
  export type OptionalAttribute = OptionalAttribute$instance;
1578
1682
 
1579
1683
  export interface OutAttribute$instance extends Attribute {
1684
+ readonly __tsonic_type_System_Runtime_InteropServices_OutAttribute: never;
1685
+
1580
1686
  }
1581
1687
 
1582
1688
 
@@ -1588,6 +1694,8 @@ export const OutAttribute: {
1588
1694
  export type OutAttribute = OutAttribute$instance;
1589
1695
 
1590
1696
  export interface PosixSignalContext$instance {
1697
+ readonly __tsonic_type_System_Runtime_InteropServices_PosixSignalContext: never;
1698
+
1591
1699
  Cancel: boolean;
1592
1700
  Signal: PosixSignal;
1593
1701
  }
@@ -1600,7 +1708,9 @@ export const PosixSignalContext: {
1600
1708
 
1601
1709
  export type PosixSignalContext = PosixSignalContext$instance;
1602
1710
 
1603
- export interface PosixSignalRegistration$instance {
1711
+ export interface PosixSignalRegistration$instance extends System_Internal.IDisposable$instance {
1712
+ readonly __tsonic_type_System_Runtime_InteropServices_PosixSignalRegistration: never;
1713
+
1604
1714
  readonly __tsonic_iface_System_IDisposable: never;
1605
1715
 
1606
1716
  Dispose(): void;
@@ -1617,12 +1727,12 @@ export interface __PosixSignalRegistration$views {
1617
1727
  As_IDisposable(): System_Internal.IDisposable$instance;
1618
1728
  }
1619
1729
 
1620
- export interface PosixSignalRegistration$instance extends System_Internal.IDisposable$instance {}
1621
-
1622
1730
  export type PosixSignalRegistration = PosixSignalRegistration$instance & __PosixSignalRegistration$views;
1623
1731
 
1624
1732
 
1625
1733
  export interface PreserveSigAttribute$instance extends Attribute {
1734
+ readonly __tsonic_type_System_Runtime_InteropServices_PreserveSigAttribute: never;
1735
+
1626
1736
  }
1627
1737
 
1628
1738
 
@@ -1634,6 +1744,8 @@ export const PreserveSigAttribute: {
1634
1744
  export type PreserveSigAttribute = PreserveSigAttribute$instance;
1635
1745
 
1636
1746
  export interface PrimaryInteropAssemblyAttribute$instance extends Attribute {
1747
+ readonly __tsonic_type_System_Runtime_InteropServices_PrimaryInteropAssemblyAttribute: never;
1748
+
1637
1749
  readonly MajorVersion: int;
1638
1750
  readonly MinorVersion: int;
1639
1751
  }
@@ -1647,6 +1759,8 @@ export const PrimaryInteropAssemblyAttribute: {
1647
1759
  export type PrimaryInteropAssemblyAttribute = PrimaryInteropAssemblyAttribute$instance;
1648
1760
 
1649
1761
  export interface ProgIdAttribute$instance extends Attribute {
1762
+ readonly __tsonic_type_System_Runtime_InteropServices_ProgIdAttribute: never;
1763
+
1650
1764
  readonly Value: string;
1651
1765
  }
1652
1766
 
@@ -1659,6 +1773,8 @@ export const ProgIdAttribute: {
1659
1773
  export type ProgIdAttribute = ProgIdAttribute$instance;
1660
1774
 
1661
1775
  export interface SafeArrayRankMismatchException$instance extends SystemException {
1776
+ readonly __tsonic_type_System_Runtime_InteropServices_SafeArrayRankMismatchException: never;
1777
+
1662
1778
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
1663
1779
 
1664
1780
  GetObjectData(info: SerializationInfo, context: StreamingContext): void;
@@ -1680,6 +1796,8 @@ export type SafeArrayRankMismatchException = SafeArrayRankMismatchException$inst
1680
1796
 
1681
1797
 
1682
1798
  export interface SafeArrayTypeMismatchException$instance extends SystemException {
1799
+ readonly __tsonic_type_System_Runtime_InteropServices_SafeArrayTypeMismatchException: never;
1800
+
1683
1801
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
1684
1802
 
1685
1803
  GetObjectData(info: SerializationInfo, context: StreamingContext): void;
@@ -1701,6 +1819,8 @@ export type SafeArrayTypeMismatchException = SafeArrayTypeMismatchException$inst
1701
1819
 
1702
1820
 
1703
1821
  export interface SafeBuffer$instance extends SafeHandleZeroOrMinusOneIsInvalid {
1822
+ readonly __tsonic_type_System_Runtime_InteropServices_SafeBuffer: never;
1823
+
1704
1824
  readonly __tsonic_iface_System_IDisposable: never;
1705
1825
 
1706
1826
  readonly ByteLength: ulong;
@@ -1732,6 +1852,8 @@ export type SafeBuffer = SafeBuffer$instance & __SafeBuffer$views;
1732
1852
 
1733
1853
 
1734
1854
  export interface SafeHandle$instance extends CriticalFinalizerObject {
1855
+ readonly __tsonic_type_System_Runtime_InteropServices_SafeHandle: never;
1856
+
1735
1857
  readonly __tsonic_iface_System_IDisposable: never;
1736
1858
 
1737
1859
  readonly IsClosed: boolean;
@@ -1760,6 +1882,8 @@ export type SafeHandle = SafeHandle$instance & __SafeHandle$views;
1760
1882
 
1761
1883
 
1762
1884
  export interface SEHException$instance extends ExternalException$instance {
1885
+ readonly __tsonic_type_System_Runtime_InteropServices_SEHException: never;
1886
+
1763
1887
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
1764
1888
 
1765
1889
  CanResume(): boolean;
@@ -1782,6 +1906,8 @@ export type SEHException = SEHException$instance & __SEHException$views;
1782
1906
 
1783
1907
 
1784
1908
  export interface StandardOleMarshalObject$instance extends MarshalByRefObject {
1909
+ readonly __tsonic_type_System_Runtime_InteropServices_StandardOleMarshalObject: never;
1910
+
1785
1911
  }
1786
1912
 
1787
1913
 
@@ -1792,6 +1918,8 @@ export const StandardOleMarshalObject: (abstract new() => StandardOleMarshalObje
1792
1918
  export type StandardOleMarshalObject = StandardOleMarshalObject$instance;
1793
1919
 
1794
1920
  export interface StructLayoutAttribute$instance extends Attribute {
1921
+ readonly __tsonic_type_System_Runtime_InteropServices_StructLayoutAttribute: never;
1922
+
1795
1923
  Pack: int;
1796
1924
  Size: int;
1797
1925
  CharSet: CharSet;
@@ -1808,6 +1936,8 @@ export const StructLayoutAttribute: {
1808
1936
  export type StructLayoutAttribute = StructLayoutAttribute$instance;
1809
1937
 
1810
1938
  export interface SuppressGCTransitionAttribute$instance extends Attribute {
1939
+ readonly __tsonic_type_System_Runtime_InteropServices_SuppressGCTransitionAttribute: never;
1940
+
1811
1941
  }
1812
1942
 
1813
1943
 
@@ -1819,6 +1949,8 @@ export const SuppressGCTransitionAttribute: {
1819
1949
  export type SuppressGCTransitionAttribute = SuppressGCTransitionAttribute$instance;
1820
1950
 
1821
1951
  export interface TypeIdentifierAttribute$instance extends Attribute {
1952
+ readonly __tsonic_type_System_Runtime_InteropServices_TypeIdentifierAttribute: never;
1953
+
1822
1954
  readonly Identifier: string | undefined;
1823
1955
  readonly Scope: string | undefined;
1824
1956
  }
@@ -1833,6 +1965,8 @@ export const TypeIdentifierAttribute: {
1833
1965
  export type TypeIdentifierAttribute = TypeIdentifierAttribute$instance;
1834
1966
 
1835
1967
  export interface TypeLibFuncAttribute$instance extends Attribute {
1968
+ readonly __tsonic_type_System_Runtime_InteropServices_TypeLibFuncAttribute: never;
1969
+
1836
1970
  readonly Value: TypeLibFuncFlags;
1837
1971
  }
1838
1972
 
@@ -1846,6 +1980,8 @@ export const TypeLibFuncAttribute: {
1846
1980
  export type TypeLibFuncAttribute = TypeLibFuncAttribute$instance;
1847
1981
 
1848
1982
  export interface TypeLibImportClassAttribute$instance extends Attribute {
1983
+ readonly __tsonic_type_System_Runtime_InteropServices_TypeLibImportClassAttribute: never;
1984
+
1849
1985
  readonly Value: string;
1850
1986
  }
1851
1987
 
@@ -1858,6 +1994,8 @@ export const TypeLibImportClassAttribute: {
1858
1994
  export type TypeLibImportClassAttribute = TypeLibImportClassAttribute$instance;
1859
1995
 
1860
1996
  export interface TypeLibTypeAttribute$instance extends Attribute {
1997
+ readonly __tsonic_type_System_Runtime_InteropServices_TypeLibTypeAttribute: never;
1998
+
1861
1999
  readonly Value: TypeLibTypeFlags;
1862
2000
  }
1863
2001
 
@@ -1871,6 +2009,8 @@ export const TypeLibTypeAttribute: {
1871
2009
  export type TypeLibTypeAttribute = TypeLibTypeAttribute$instance;
1872
2010
 
1873
2011
  export interface TypeLibVarAttribute$instance extends Attribute {
2012
+ readonly __tsonic_type_System_Runtime_InteropServices_TypeLibVarAttribute: never;
2013
+
1874
2014
  readonly Value: TypeLibVarFlags;
1875
2015
  }
1876
2016
 
@@ -1884,6 +2024,8 @@ export const TypeLibVarAttribute: {
1884
2024
  export type TypeLibVarAttribute = TypeLibVarAttribute$instance;
1885
2025
 
1886
2026
  export interface TypeLibVersionAttribute$instance extends Attribute {
2027
+ readonly __tsonic_type_System_Runtime_InteropServices_TypeLibVersionAttribute: never;
2028
+
1887
2029
  readonly MajorVersion: int;
1888
2030
  readonly MinorVersion: int;
1889
2031
  }
@@ -1897,6 +2039,8 @@ export const TypeLibVersionAttribute: {
1897
2039
  export type TypeLibVersionAttribute = TypeLibVersionAttribute$instance;
1898
2040
 
1899
2041
  export interface TypeMapAssemblyTargetAttribute_1$instance<TTypeMapGroup> extends Attribute {
2042
+ readonly __tsonic_type_System_Runtime_InteropServices_TypeMapAssemblyTargetAttribute_1: never;
2043
+
1900
2044
  }
1901
2045
 
1902
2046
 
@@ -1908,6 +2052,8 @@ export const TypeMapAssemblyTargetAttribute_1: {
1908
2052
  export type TypeMapAssemblyTargetAttribute_1<TTypeMapGroup> = TypeMapAssemblyTargetAttribute_1$instance<TTypeMapGroup>;
1909
2053
 
1910
2054
  export interface TypeMapAssociationAttribute_1$instance<TTypeMapGroup> extends Attribute {
2055
+ readonly __tsonic_type_System_Runtime_InteropServices_TypeMapAssociationAttribute_1: never;
2056
+
1911
2057
  }
1912
2058
 
1913
2059
 
@@ -1919,6 +2065,8 @@ export const TypeMapAssociationAttribute_1: {
1919
2065
  export type TypeMapAssociationAttribute_1<TTypeMapGroup> = TypeMapAssociationAttribute_1$instance<TTypeMapGroup>;
1920
2066
 
1921
2067
  export interface TypeMapAttribute_1$instance<TTypeMapGroup> extends Attribute {
2068
+ readonly __tsonic_type_System_Runtime_InteropServices_TypeMapAttribute_1: never;
2069
+
1922
2070
  }
1923
2071
 
1924
2072
 
@@ -1931,6 +2079,8 @@ export const TypeMapAttribute_1: {
1931
2079
  export type TypeMapAttribute_1<TTypeMapGroup> = TypeMapAttribute_1$instance<TTypeMapGroup>;
1932
2080
 
1933
2081
  export interface UnknownWrapper$instance {
2082
+ readonly __tsonic_type_System_Runtime_InteropServices_UnknownWrapper: never;
2083
+
1934
2084
  readonly WrappedObject: unknown | undefined;
1935
2085
  }
1936
2086
 
@@ -1943,6 +2093,8 @@ export const UnknownWrapper: {
1943
2093
  export type UnknownWrapper = UnknownWrapper$instance;
1944
2094
 
1945
2095
  export interface UnmanagedCallConvAttribute$instance extends Attribute {
2096
+ readonly __tsonic_type_System_Runtime_InteropServices_UnmanagedCallConvAttribute: never;
2097
+
1946
2098
  CallConvs: Type[] | undefined;
1947
2099
  }
1948
2100
 
@@ -1955,6 +2107,8 @@ export const UnmanagedCallConvAttribute: {
1955
2107
  export type UnmanagedCallConvAttribute = UnmanagedCallConvAttribute$instance;
1956
2108
 
1957
2109
  export interface UnmanagedCallersOnlyAttribute$instance extends Attribute {
2110
+ readonly __tsonic_type_System_Runtime_InteropServices_UnmanagedCallersOnlyAttribute: never;
2111
+
1958
2112
  CallConvs: Type[] | undefined;
1959
2113
  EntryPoint: string | undefined;
1960
2114
  }
@@ -1968,6 +2122,8 @@ export const UnmanagedCallersOnlyAttribute: {
1968
2122
  export type UnmanagedCallersOnlyAttribute = UnmanagedCallersOnlyAttribute$instance;
1969
2123
 
1970
2124
  export interface UnmanagedFunctionPointerAttribute$instance extends Attribute {
2125
+ readonly __tsonic_type_System_Runtime_InteropServices_UnmanagedFunctionPointerAttribute: never;
2126
+
1971
2127
  BestFitMapping: boolean;
1972
2128
  SetLastError: boolean;
1973
2129
  ThrowOnUnmappableChar: boolean;
@@ -1984,6 +2140,8 @@ export const UnmanagedFunctionPointerAttribute: {
1984
2140
  export type UnmanagedFunctionPointerAttribute = UnmanagedFunctionPointerAttribute$instance;
1985
2141
 
1986
2142
  export interface VariantWrapper$instance {
2143
+ readonly __tsonic_type_System_Runtime_InteropServices_VariantWrapper: never;
2144
+
1987
2145
  readonly WrappedObject: unknown | undefined;
1988
2146
  }
1989
2147
 
@@ -1996,6 +2154,8 @@ export const VariantWrapper: {
1996
2154
  export type VariantWrapper = VariantWrapper$instance;
1997
2155
 
1998
2156
  export interface WasmImportLinkageAttribute$instance extends Attribute {
2157
+ readonly __tsonic_type_System_Runtime_InteropServices_WasmImportLinkageAttribute: never;
2158
+
1999
2159
  }
2000
2160
 
2001
2161