@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
|
@@ -578,6 +578,8 @@ export interface ISZArrayTypeProvider_1$instance<TType> {
|
|
|
578
578
|
export type ISZArrayTypeProvider_1<TType> = ISZArrayTypeProvider_1$instance<TType>;
|
|
579
579
|
|
|
580
580
|
export interface ArrayShape$instance {
|
|
581
|
+
readonly __tsonic_type_System_Reflection_Metadata_ArrayShape: never;
|
|
582
|
+
|
|
581
583
|
readonly LowerBounds: ImmutableArray_1<System_Internal.Int32>;
|
|
582
584
|
readonly Rank: int;
|
|
583
585
|
readonly Sizes: ImmutableArray_1<System_Internal.Int32>;
|
|
@@ -592,6 +594,8 @@ export const ArrayShape: {
|
|
|
592
594
|
export type ArrayShape = ArrayShape$instance;
|
|
593
595
|
|
|
594
596
|
export interface AssemblyDefinition$instance {
|
|
597
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyDefinition: never;
|
|
598
|
+
|
|
595
599
|
readonly Culture: StringHandle;
|
|
596
600
|
readonly Flags: AssemblyFlags;
|
|
597
601
|
readonly HashAlgorithm: AssemblyHashAlgorithm;
|
|
@@ -613,6 +617,8 @@ export const AssemblyDefinition: {
|
|
|
613
617
|
export type AssemblyDefinition = AssemblyDefinition$instance;
|
|
614
618
|
|
|
615
619
|
export interface AssemblyDefinitionHandle$instance {
|
|
620
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyDefinitionHandle: never;
|
|
621
|
+
|
|
616
622
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
617
623
|
|
|
618
624
|
readonly IsNil: boolean;
|
|
@@ -638,6 +644,8 @@ export type AssemblyDefinitionHandle = AssemblyDefinitionHandle$instance & __Ass
|
|
|
638
644
|
|
|
639
645
|
|
|
640
646
|
export interface AssemblyFile$instance {
|
|
647
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyFile: never;
|
|
648
|
+
|
|
641
649
|
readonly ContainsMetadata: boolean;
|
|
642
650
|
readonly HashValue: BlobHandle;
|
|
643
651
|
readonly Name: StringHandle;
|
|
@@ -653,6 +661,8 @@ export const AssemblyFile: {
|
|
|
653
661
|
export type AssemblyFile = AssemblyFile$instance;
|
|
654
662
|
|
|
655
663
|
export interface AssemblyFileHandle$instance {
|
|
664
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyFileHandle: never;
|
|
665
|
+
|
|
656
666
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
657
667
|
|
|
658
668
|
readonly IsNil: boolean;
|
|
@@ -678,6 +688,8 @@ export type AssemblyFileHandle = AssemblyFileHandle$instance & __AssemblyFileHan
|
|
|
678
688
|
|
|
679
689
|
|
|
680
690
|
export interface AssemblyFileHandleCollection$instance {
|
|
691
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyFileHandleCollection: never;
|
|
692
|
+
|
|
681
693
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
682
694
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
683
695
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -702,6 +714,8 @@ export type AssemblyFileHandleCollection = AssemblyFileHandleCollection$instance
|
|
|
702
714
|
|
|
703
715
|
|
|
704
716
|
export interface AssemblyFileHandleCollection_Enumerator$instance {
|
|
717
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyFileHandleCollection_Enumerator: never;
|
|
718
|
+
|
|
705
719
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
706
720
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
707
721
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -726,6 +740,8 @@ export type AssemblyFileHandleCollection_Enumerator = AssemblyFileHandleCollecti
|
|
|
726
740
|
|
|
727
741
|
|
|
728
742
|
export interface AssemblyReference$instance {
|
|
743
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyReference: never;
|
|
744
|
+
|
|
729
745
|
readonly Culture: StringHandle;
|
|
730
746
|
readonly Flags: AssemblyFlags;
|
|
731
747
|
readonly HashValue: BlobHandle;
|
|
@@ -746,6 +762,8 @@ export const AssemblyReference: {
|
|
|
746
762
|
export type AssemblyReference = AssemblyReference$instance;
|
|
747
763
|
|
|
748
764
|
export interface AssemblyReferenceHandle$instance {
|
|
765
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyReferenceHandle: never;
|
|
766
|
+
|
|
749
767
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
750
768
|
|
|
751
769
|
readonly IsNil: boolean;
|
|
@@ -771,6 +789,8 @@ export type AssemblyReferenceHandle = AssemblyReferenceHandle$instance & __Assem
|
|
|
771
789
|
|
|
772
790
|
|
|
773
791
|
export interface AssemblyReferenceHandleCollection$instance {
|
|
792
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyReferenceHandleCollection: never;
|
|
793
|
+
|
|
774
794
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
775
795
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
776
796
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -795,6 +815,8 @@ export type AssemblyReferenceHandleCollection = AssemblyReferenceHandleCollectio
|
|
|
795
815
|
|
|
796
816
|
|
|
797
817
|
export interface AssemblyReferenceHandleCollection_Enumerator$instance {
|
|
818
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyReferenceHandleCollection_Enumerator: never;
|
|
819
|
+
|
|
798
820
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
799
821
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
800
822
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -819,6 +841,8 @@ export type AssemblyReferenceHandleCollection_Enumerator = AssemblyReferenceHand
|
|
|
819
841
|
|
|
820
842
|
|
|
821
843
|
export interface Blob$instance {
|
|
844
|
+
readonly __tsonic_type_System_Reflection_Metadata_Blob: never;
|
|
845
|
+
|
|
822
846
|
readonly IsDefault: boolean;
|
|
823
847
|
readonly Length: int;
|
|
824
848
|
GetBytes(): ArraySegment_1<System_Internal.Byte>;
|
|
@@ -833,6 +857,8 @@ export const Blob: {
|
|
|
833
857
|
export type Blob = Blob$instance;
|
|
834
858
|
|
|
835
859
|
export interface BlobBuilder_Blobs$instance {
|
|
860
|
+
readonly __tsonic_type_System_Reflection_Metadata_BlobBuilder_Blobs: never;
|
|
861
|
+
|
|
836
862
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
837
863
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
838
864
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -863,6 +889,8 @@ export type BlobBuilder_Blobs = BlobBuilder_Blobs$instance & __BlobBuilder_Blobs
|
|
|
863
889
|
|
|
864
890
|
|
|
865
891
|
export interface BlobContentId$instance {
|
|
892
|
+
readonly __tsonic_type_System_Reflection_Metadata_BlobContentId: never;
|
|
893
|
+
|
|
866
894
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
867
895
|
|
|
868
896
|
readonly Guid: Guid;
|
|
@@ -895,6 +923,8 @@ export type BlobContentId = BlobContentId$instance & __BlobContentId$views;
|
|
|
895
923
|
|
|
896
924
|
|
|
897
925
|
export interface BlobHandle$instance {
|
|
926
|
+
readonly __tsonic_type_System_Reflection_Metadata_BlobHandle: never;
|
|
927
|
+
|
|
898
928
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
899
929
|
|
|
900
930
|
readonly IsNil: boolean;
|
|
@@ -920,6 +950,8 @@ export type BlobHandle = BlobHandle$instance & __BlobHandle$views;
|
|
|
920
950
|
|
|
921
951
|
|
|
922
952
|
export interface BlobReader$instance {
|
|
953
|
+
readonly __tsonic_type_System_Reflection_Metadata_BlobReader: never;
|
|
954
|
+
|
|
923
955
|
readonly CurrentPointer: ptr<byte>;
|
|
924
956
|
readonly Length: int;
|
|
925
957
|
Offset: int;
|
|
@@ -969,6 +1001,8 @@ export const BlobReader: {
|
|
|
969
1001
|
export type BlobReader = BlobReader$instance;
|
|
970
1002
|
|
|
971
1003
|
export interface BlobWriter$instance {
|
|
1004
|
+
readonly __tsonic_type_System_Reflection_Metadata_BlobWriter: never;
|
|
1005
|
+
|
|
972
1006
|
readonly Blob: Blob;
|
|
973
1007
|
readonly Length: int;
|
|
974
1008
|
Offset: int;
|
|
@@ -1030,6 +1064,8 @@ export const BlobWriter: {
|
|
|
1030
1064
|
export type BlobWriter = BlobWriter$instance;
|
|
1031
1065
|
|
|
1032
1066
|
export interface Constant$instance {
|
|
1067
|
+
readonly __tsonic_type_System_Reflection_Metadata_Constant: never;
|
|
1068
|
+
|
|
1033
1069
|
readonly Parent: EntityHandle;
|
|
1034
1070
|
readonly TypeCode: ConstantTypeCode;
|
|
1035
1071
|
readonly Value: BlobHandle;
|
|
@@ -1044,6 +1080,8 @@ export const Constant: {
|
|
|
1044
1080
|
export type Constant = Constant$instance;
|
|
1045
1081
|
|
|
1046
1082
|
export interface ConstantHandle$instance {
|
|
1083
|
+
readonly __tsonic_type_System_Reflection_Metadata_ConstantHandle: never;
|
|
1084
|
+
|
|
1047
1085
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1048
1086
|
|
|
1049
1087
|
readonly IsNil: boolean;
|
|
@@ -1069,6 +1107,8 @@ export type ConstantHandle = ConstantHandle$instance & __ConstantHandle$views;
|
|
|
1069
1107
|
|
|
1070
1108
|
|
|
1071
1109
|
export interface CustomAttribute$instance {
|
|
1110
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomAttribute: never;
|
|
1111
|
+
|
|
1072
1112
|
readonly Constructor: EntityHandle;
|
|
1073
1113
|
readonly Parent: EntityHandle;
|
|
1074
1114
|
readonly Value: BlobHandle;
|
|
@@ -1084,6 +1124,8 @@ export const CustomAttribute: {
|
|
|
1084
1124
|
export type CustomAttribute = CustomAttribute$instance;
|
|
1085
1125
|
|
|
1086
1126
|
export interface CustomAttributeHandle$instance {
|
|
1127
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomAttributeHandle: never;
|
|
1128
|
+
|
|
1087
1129
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1088
1130
|
|
|
1089
1131
|
readonly IsNil: boolean;
|
|
@@ -1109,6 +1151,8 @@ export type CustomAttributeHandle = CustomAttributeHandle$instance & __CustomAtt
|
|
|
1109
1151
|
|
|
1110
1152
|
|
|
1111
1153
|
export interface CustomAttributeHandleCollection$instance {
|
|
1154
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomAttributeHandleCollection: never;
|
|
1155
|
+
|
|
1112
1156
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1113
1157
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1114
1158
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -1133,6 +1177,8 @@ export type CustomAttributeHandleCollection = CustomAttributeHandleCollection$in
|
|
|
1133
1177
|
|
|
1134
1178
|
|
|
1135
1179
|
export interface CustomAttributeHandleCollection_Enumerator$instance {
|
|
1180
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomAttributeHandleCollection_Enumerator: never;
|
|
1181
|
+
|
|
1136
1182
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1137
1183
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1138
1184
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -1157,6 +1203,8 @@ export type CustomAttributeHandleCollection_Enumerator = CustomAttributeHandleCo
|
|
|
1157
1203
|
|
|
1158
1204
|
|
|
1159
1205
|
export interface CustomAttributeNamedArgument_1$instance<TType> {
|
|
1206
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomAttributeNamedArgument_1: never;
|
|
1207
|
+
|
|
1160
1208
|
readonly Kind: CustomAttributeNamedArgumentKind;
|
|
1161
1209
|
readonly Name: string | undefined;
|
|
1162
1210
|
readonly Type: TType;
|
|
@@ -1172,6 +1220,8 @@ export const CustomAttributeNamedArgument_1: {
|
|
|
1172
1220
|
export type CustomAttributeNamedArgument_1<TType> = CustomAttributeNamedArgument_1$instance<TType>;
|
|
1173
1221
|
|
|
1174
1222
|
export interface CustomAttributeTypedArgument_1$instance<TType> {
|
|
1223
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomAttributeTypedArgument_1: never;
|
|
1224
|
+
|
|
1175
1225
|
readonly Type: TType;
|
|
1176
1226
|
readonly Value: unknown | undefined;
|
|
1177
1227
|
}
|
|
@@ -1185,6 +1235,8 @@ export const CustomAttributeTypedArgument_1: {
|
|
|
1185
1235
|
export type CustomAttributeTypedArgument_1<TType> = CustomAttributeTypedArgument_1$instance<TType>;
|
|
1186
1236
|
|
|
1187
1237
|
export interface CustomAttributeValue_1$instance<TType> {
|
|
1238
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomAttributeValue_1: never;
|
|
1239
|
+
|
|
1188
1240
|
readonly FixedArguments: ImmutableArray_1<CustomAttributeTypedArgument_1<TType>>;
|
|
1189
1241
|
readonly NamedArguments: ImmutableArray_1<CustomAttributeNamedArgument_1<TType>>;
|
|
1190
1242
|
}
|
|
@@ -1198,6 +1250,8 @@ export const CustomAttributeValue_1: {
|
|
|
1198
1250
|
export type CustomAttributeValue_1<TType> = CustomAttributeValue_1$instance<TType>;
|
|
1199
1251
|
|
|
1200
1252
|
export interface CustomDebugInformation$instance {
|
|
1253
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomDebugInformation: never;
|
|
1254
|
+
|
|
1201
1255
|
readonly Kind: GuidHandle;
|
|
1202
1256
|
readonly Parent: EntityHandle;
|
|
1203
1257
|
readonly Value: BlobHandle;
|
|
@@ -1212,6 +1266,8 @@ export const CustomDebugInformation: {
|
|
|
1212
1266
|
export type CustomDebugInformation = CustomDebugInformation$instance;
|
|
1213
1267
|
|
|
1214
1268
|
export interface CustomDebugInformationHandle$instance {
|
|
1269
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomDebugInformationHandle: never;
|
|
1270
|
+
|
|
1215
1271
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1216
1272
|
|
|
1217
1273
|
readonly IsNil: boolean;
|
|
@@ -1237,6 +1293,8 @@ export type CustomDebugInformationHandle = CustomDebugInformationHandle$instance
|
|
|
1237
1293
|
|
|
1238
1294
|
|
|
1239
1295
|
export interface CustomDebugInformationHandleCollection$instance {
|
|
1296
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomDebugInformationHandleCollection: never;
|
|
1297
|
+
|
|
1240
1298
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1241
1299
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1242
1300
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -1261,6 +1319,8 @@ export type CustomDebugInformationHandleCollection = CustomDebugInformationHandl
|
|
|
1261
1319
|
|
|
1262
1320
|
|
|
1263
1321
|
export interface CustomDebugInformationHandleCollection_Enumerator$instance {
|
|
1322
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomDebugInformationHandleCollection_Enumerator: never;
|
|
1323
|
+
|
|
1264
1324
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1265
1325
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1266
1326
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -1285,6 +1345,8 @@ export type CustomDebugInformationHandleCollection_Enumerator = CustomDebugInfor
|
|
|
1285
1345
|
|
|
1286
1346
|
|
|
1287
1347
|
export interface DeclarativeSecurityAttribute$instance {
|
|
1348
|
+
readonly __tsonic_type_System_Reflection_Metadata_DeclarativeSecurityAttribute: never;
|
|
1349
|
+
|
|
1288
1350
|
readonly Action: DeclarativeSecurityAction;
|
|
1289
1351
|
readonly Parent: EntityHandle;
|
|
1290
1352
|
readonly PermissionSet: BlobHandle;
|
|
@@ -1299,6 +1361,8 @@ export const DeclarativeSecurityAttribute: {
|
|
|
1299
1361
|
export type DeclarativeSecurityAttribute = DeclarativeSecurityAttribute$instance;
|
|
1300
1362
|
|
|
1301
1363
|
export interface DeclarativeSecurityAttributeHandle$instance {
|
|
1364
|
+
readonly __tsonic_type_System_Reflection_Metadata_DeclarativeSecurityAttributeHandle: never;
|
|
1365
|
+
|
|
1302
1366
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1303
1367
|
|
|
1304
1368
|
readonly IsNil: boolean;
|
|
@@ -1324,6 +1388,8 @@ export type DeclarativeSecurityAttributeHandle = DeclarativeSecurityAttributeHan
|
|
|
1324
1388
|
|
|
1325
1389
|
|
|
1326
1390
|
export interface DeclarativeSecurityAttributeHandleCollection$instance {
|
|
1391
|
+
readonly __tsonic_type_System_Reflection_Metadata_DeclarativeSecurityAttributeHandleCollection: never;
|
|
1392
|
+
|
|
1327
1393
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1328
1394
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1329
1395
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -1348,6 +1414,8 @@ export type DeclarativeSecurityAttributeHandleCollection = DeclarativeSecurityAt
|
|
|
1348
1414
|
|
|
1349
1415
|
|
|
1350
1416
|
export interface DeclarativeSecurityAttributeHandleCollection_Enumerator$instance {
|
|
1417
|
+
readonly __tsonic_type_System_Reflection_Metadata_DeclarativeSecurityAttributeHandleCollection_Enumerator: never;
|
|
1418
|
+
|
|
1351
1419
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1352
1420
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1353
1421
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -1372,6 +1440,8 @@ export type DeclarativeSecurityAttributeHandleCollection_Enumerator = Declarativ
|
|
|
1372
1440
|
|
|
1373
1441
|
|
|
1374
1442
|
export interface Document$instance {
|
|
1443
|
+
readonly __tsonic_type_System_Reflection_Metadata_Document: never;
|
|
1444
|
+
|
|
1375
1445
|
readonly Hash: BlobHandle;
|
|
1376
1446
|
readonly HashAlgorithm: GuidHandle;
|
|
1377
1447
|
readonly Language: GuidHandle;
|
|
@@ -1387,6 +1457,8 @@ export const Document: {
|
|
|
1387
1457
|
export type Document = Document$instance;
|
|
1388
1458
|
|
|
1389
1459
|
export interface DocumentHandle$instance {
|
|
1460
|
+
readonly __tsonic_type_System_Reflection_Metadata_DocumentHandle: never;
|
|
1461
|
+
|
|
1390
1462
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1391
1463
|
|
|
1392
1464
|
readonly IsNil: boolean;
|
|
@@ -1412,6 +1484,8 @@ export type DocumentHandle = DocumentHandle$instance & __DocumentHandle$views;
|
|
|
1412
1484
|
|
|
1413
1485
|
|
|
1414
1486
|
export interface DocumentHandleCollection$instance {
|
|
1487
|
+
readonly __tsonic_type_System_Reflection_Metadata_DocumentHandleCollection: never;
|
|
1488
|
+
|
|
1415
1489
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1416
1490
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1417
1491
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -1436,6 +1510,8 @@ export type DocumentHandleCollection = DocumentHandleCollection$instance & __Doc
|
|
|
1436
1510
|
|
|
1437
1511
|
|
|
1438
1512
|
export interface DocumentHandleCollection_Enumerator$instance {
|
|
1513
|
+
readonly __tsonic_type_System_Reflection_Metadata_DocumentHandleCollection_Enumerator: never;
|
|
1514
|
+
|
|
1439
1515
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1440
1516
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1441
1517
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -1460,6 +1536,8 @@ export type DocumentHandleCollection_Enumerator = DocumentHandleCollection_Enume
|
|
|
1460
1536
|
|
|
1461
1537
|
|
|
1462
1538
|
export interface DocumentNameBlobHandle$instance {
|
|
1539
|
+
readonly __tsonic_type_System_Reflection_Metadata_DocumentNameBlobHandle: never;
|
|
1540
|
+
|
|
1463
1541
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1464
1542
|
|
|
1465
1543
|
readonly IsNil: boolean;
|
|
@@ -1485,6 +1563,8 @@ export type DocumentNameBlobHandle = DocumentNameBlobHandle$instance & __Documen
|
|
|
1485
1563
|
|
|
1486
1564
|
|
|
1487
1565
|
export interface EntityHandle$instance {
|
|
1566
|
+
readonly __tsonic_type_System_Reflection_Metadata_EntityHandle: never;
|
|
1567
|
+
|
|
1488
1568
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1489
1569
|
|
|
1490
1570
|
readonly IsNil: boolean;
|
|
@@ -1513,6 +1593,8 @@ export type EntityHandle = EntityHandle$instance & __EntityHandle$views;
|
|
|
1513
1593
|
|
|
1514
1594
|
|
|
1515
1595
|
export interface EventAccessors$instance {
|
|
1596
|
+
readonly __tsonic_type_System_Reflection_Metadata_EventAccessors: never;
|
|
1597
|
+
|
|
1516
1598
|
readonly Adder: MethodDefinitionHandle;
|
|
1517
1599
|
readonly Others: ImmutableArray_1<MethodDefinitionHandle>;
|
|
1518
1600
|
readonly Raiser: MethodDefinitionHandle;
|
|
@@ -1528,6 +1610,8 @@ export const EventAccessors: {
|
|
|
1528
1610
|
export type EventAccessors = EventAccessors$instance;
|
|
1529
1611
|
|
|
1530
1612
|
export interface EventDefinition$instance {
|
|
1613
|
+
readonly __tsonic_type_System_Reflection_Metadata_EventDefinition: never;
|
|
1614
|
+
|
|
1531
1615
|
readonly Attributes: EventAttributes;
|
|
1532
1616
|
readonly Name: StringHandle;
|
|
1533
1617
|
readonly Type: EntityHandle;
|
|
@@ -1545,6 +1629,8 @@ export const EventDefinition: {
|
|
|
1545
1629
|
export type EventDefinition = EventDefinition$instance;
|
|
1546
1630
|
|
|
1547
1631
|
export interface EventDefinitionHandle$instance {
|
|
1632
|
+
readonly __tsonic_type_System_Reflection_Metadata_EventDefinitionHandle: never;
|
|
1633
|
+
|
|
1548
1634
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1549
1635
|
|
|
1550
1636
|
readonly IsNil: boolean;
|
|
@@ -1570,6 +1656,8 @@ export type EventDefinitionHandle = EventDefinitionHandle$instance & __EventDefi
|
|
|
1570
1656
|
|
|
1571
1657
|
|
|
1572
1658
|
export interface EventDefinitionHandleCollection$instance {
|
|
1659
|
+
readonly __tsonic_type_System_Reflection_Metadata_EventDefinitionHandleCollection: never;
|
|
1660
|
+
|
|
1573
1661
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1574
1662
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1575
1663
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -1594,6 +1682,8 @@ export type EventDefinitionHandleCollection = EventDefinitionHandleCollection$in
|
|
|
1594
1682
|
|
|
1595
1683
|
|
|
1596
1684
|
export interface EventDefinitionHandleCollection_Enumerator$instance {
|
|
1685
|
+
readonly __tsonic_type_System_Reflection_Metadata_EventDefinitionHandleCollection_Enumerator: never;
|
|
1686
|
+
|
|
1597
1687
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1598
1688
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1599
1689
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -1618,6 +1708,8 @@ export type EventDefinitionHandleCollection_Enumerator = EventDefinitionHandleCo
|
|
|
1618
1708
|
|
|
1619
1709
|
|
|
1620
1710
|
export interface ExceptionRegion$instance {
|
|
1711
|
+
readonly __tsonic_type_System_Reflection_Metadata_ExceptionRegion: never;
|
|
1712
|
+
|
|
1621
1713
|
readonly CatchType: EntityHandle;
|
|
1622
1714
|
readonly FilterOffset: int;
|
|
1623
1715
|
readonly HandlerLength: int;
|
|
@@ -1636,6 +1728,8 @@ export const ExceptionRegion: {
|
|
|
1636
1728
|
export type ExceptionRegion = ExceptionRegion$instance;
|
|
1637
1729
|
|
|
1638
1730
|
export interface ExportedType$instance {
|
|
1731
|
+
readonly __tsonic_type_System_Reflection_Metadata_ExportedType: never;
|
|
1732
|
+
|
|
1639
1733
|
readonly Attributes: TypeAttributes;
|
|
1640
1734
|
readonly Implementation: EntityHandle;
|
|
1641
1735
|
readonly IsForwarder: boolean;
|
|
@@ -1654,6 +1748,8 @@ export const ExportedType: {
|
|
|
1654
1748
|
export type ExportedType = ExportedType$instance;
|
|
1655
1749
|
|
|
1656
1750
|
export interface ExportedTypeHandle$instance {
|
|
1751
|
+
readonly __tsonic_type_System_Reflection_Metadata_ExportedTypeHandle: never;
|
|
1752
|
+
|
|
1657
1753
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1658
1754
|
|
|
1659
1755
|
readonly IsNil: boolean;
|
|
@@ -1679,6 +1775,8 @@ export type ExportedTypeHandle = ExportedTypeHandle$instance & __ExportedTypeHan
|
|
|
1679
1775
|
|
|
1680
1776
|
|
|
1681
1777
|
export interface ExportedTypeHandleCollection$instance {
|
|
1778
|
+
readonly __tsonic_type_System_Reflection_Metadata_ExportedTypeHandleCollection: never;
|
|
1779
|
+
|
|
1682
1780
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1683
1781
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1684
1782
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -1703,6 +1801,8 @@ export type ExportedTypeHandleCollection = ExportedTypeHandleCollection$instance
|
|
|
1703
1801
|
|
|
1704
1802
|
|
|
1705
1803
|
export interface ExportedTypeHandleCollection_Enumerator$instance {
|
|
1804
|
+
readonly __tsonic_type_System_Reflection_Metadata_ExportedTypeHandleCollection_Enumerator: never;
|
|
1805
|
+
|
|
1706
1806
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1707
1807
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1708
1808
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -1727,6 +1827,8 @@ export type ExportedTypeHandleCollection_Enumerator = ExportedTypeHandleCollecti
|
|
|
1727
1827
|
|
|
1728
1828
|
|
|
1729
1829
|
export interface FieldDefinition$instance {
|
|
1830
|
+
readonly __tsonic_type_System_Reflection_Metadata_FieldDefinition: never;
|
|
1831
|
+
|
|
1730
1832
|
readonly Attributes: FieldAttributes;
|
|
1731
1833
|
readonly Name: StringHandle;
|
|
1732
1834
|
readonly Signature: BlobHandle;
|
|
@@ -1748,6 +1850,8 @@ export const FieldDefinition: {
|
|
|
1748
1850
|
export type FieldDefinition = FieldDefinition$instance;
|
|
1749
1851
|
|
|
1750
1852
|
export interface FieldDefinitionHandle$instance {
|
|
1853
|
+
readonly __tsonic_type_System_Reflection_Metadata_FieldDefinitionHandle: never;
|
|
1854
|
+
|
|
1751
1855
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1752
1856
|
|
|
1753
1857
|
readonly IsNil: boolean;
|
|
@@ -1773,6 +1877,8 @@ export type FieldDefinitionHandle = FieldDefinitionHandle$instance & __FieldDefi
|
|
|
1773
1877
|
|
|
1774
1878
|
|
|
1775
1879
|
export interface FieldDefinitionHandleCollection$instance {
|
|
1880
|
+
readonly __tsonic_type_System_Reflection_Metadata_FieldDefinitionHandleCollection: never;
|
|
1881
|
+
|
|
1776
1882
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1777
1883
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1778
1884
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -1797,6 +1903,8 @@ export type FieldDefinitionHandleCollection = FieldDefinitionHandleCollection$in
|
|
|
1797
1903
|
|
|
1798
1904
|
|
|
1799
1905
|
export interface FieldDefinitionHandleCollection_Enumerator$instance {
|
|
1906
|
+
readonly __tsonic_type_System_Reflection_Metadata_FieldDefinitionHandleCollection_Enumerator: never;
|
|
1907
|
+
|
|
1800
1908
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1801
1909
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1802
1910
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -1821,6 +1929,8 @@ export type FieldDefinitionHandleCollection_Enumerator = FieldDefinitionHandleCo
|
|
|
1821
1929
|
|
|
1822
1930
|
|
|
1823
1931
|
export interface GenericParameter$instance {
|
|
1932
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameter: never;
|
|
1933
|
+
|
|
1824
1934
|
readonly Attributes: GenericParameterAttributes;
|
|
1825
1935
|
readonly Index: int;
|
|
1826
1936
|
readonly Name: StringHandle;
|
|
@@ -1838,6 +1948,8 @@ export const GenericParameter: {
|
|
|
1838
1948
|
export type GenericParameter = GenericParameter$instance;
|
|
1839
1949
|
|
|
1840
1950
|
export interface GenericParameterConstraint$instance {
|
|
1951
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameterConstraint: never;
|
|
1952
|
+
|
|
1841
1953
|
readonly Parameter: GenericParameterHandle;
|
|
1842
1954
|
readonly Type: EntityHandle;
|
|
1843
1955
|
GetCustomAttributes(): CustomAttributeHandleCollection;
|
|
@@ -1852,6 +1964,8 @@ export const GenericParameterConstraint: {
|
|
|
1852
1964
|
export type GenericParameterConstraint = GenericParameterConstraint$instance;
|
|
1853
1965
|
|
|
1854
1966
|
export interface GenericParameterConstraintHandle$instance {
|
|
1967
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameterConstraintHandle: never;
|
|
1968
|
+
|
|
1855
1969
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1856
1970
|
|
|
1857
1971
|
readonly IsNil: boolean;
|
|
@@ -1877,6 +1991,8 @@ export type GenericParameterConstraintHandle = GenericParameterConstraintHandle$
|
|
|
1877
1991
|
|
|
1878
1992
|
|
|
1879
1993
|
export interface GenericParameterConstraintHandleCollection$instance {
|
|
1994
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameterConstraintHandleCollection: never;
|
|
1995
|
+
|
|
1880
1996
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1881
1997
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1882
1998
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
@@ -1903,6 +2019,8 @@ export type GenericParameterConstraintHandleCollection = GenericParameterConstra
|
|
|
1903
2019
|
|
|
1904
2020
|
|
|
1905
2021
|
export interface GenericParameterConstraintHandleCollection_Enumerator$instance {
|
|
2022
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameterConstraintHandleCollection_Enumerator: never;
|
|
2023
|
+
|
|
1906
2024
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1907
2025
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1908
2026
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -1927,6 +2045,8 @@ export type GenericParameterConstraintHandleCollection_Enumerator = GenericParam
|
|
|
1927
2045
|
|
|
1928
2046
|
|
|
1929
2047
|
export interface GenericParameterHandle$instance {
|
|
2048
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameterHandle: never;
|
|
2049
|
+
|
|
1930
2050
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1931
2051
|
|
|
1932
2052
|
readonly IsNil: boolean;
|
|
@@ -1952,6 +2072,8 @@ export type GenericParameterHandle = GenericParameterHandle$instance & __Generic
|
|
|
1952
2072
|
|
|
1953
2073
|
|
|
1954
2074
|
export interface GenericParameterHandleCollection$instance {
|
|
2075
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameterHandleCollection: never;
|
|
2076
|
+
|
|
1955
2077
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1956
2078
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1957
2079
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
@@ -1978,6 +2100,8 @@ export type GenericParameterHandleCollection = GenericParameterHandleCollection$
|
|
|
1978
2100
|
|
|
1979
2101
|
|
|
1980
2102
|
export interface GenericParameterHandleCollection_Enumerator$instance {
|
|
2103
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameterHandleCollection_Enumerator: never;
|
|
2104
|
+
|
|
1981
2105
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1982
2106
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1983
2107
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -2002,6 +2126,8 @@ export type GenericParameterHandleCollection_Enumerator = GenericParameterHandle
|
|
|
2002
2126
|
|
|
2003
2127
|
|
|
2004
2128
|
export interface GuidHandle$instance {
|
|
2129
|
+
readonly __tsonic_type_System_Reflection_Metadata_GuidHandle: never;
|
|
2130
|
+
|
|
2005
2131
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2006
2132
|
|
|
2007
2133
|
readonly IsNil: boolean;
|
|
@@ -2027,6 +2153,8 @@ export type GuidHandle = GuidHandle$instance & __GuidHandle$views;
|
|
|
2027
2153
|
|
|
2028
2154
|
|
|
2029
2155
|
export interface Handle$instance {
|
|
2156
|
+
readonly __tsonic_type_System_Reflection_Metadata_Handle: never;
|
|
2157
|
+
|
|
2030
2158
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2031
2159
|
|
|
2032
2160
|
readonly IsNil: boolean;
|
|
@@ -2055,6 +2183,8 @@ export type Handle = Handle$instance & __Handle$views;
|
|
|
2055
2183
|
|
|
2056
2184
|
|
|
2057
2185
|
export interface ImportDefinition$instance {
|
|
2186
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImportDefinition: never;
|
|
2187
|
+
|
|
2058
2188
|
readonly Alias: BlobHandle;
|
|
2059
2189
|
readonly Kind: ImportDefinitionKind;
|
|
2060
2190
|
readonly TargetAssembly: AssemblyReferenceHandle;
|
|
@@ -2071,6 +2201,8 @@ export const ImportDefinition: {
|
|
|
2071
2201
|
export type ImportDefinition = ImportDefinition$instance;
|
|
2072
2202
|
|
|
2073
2203
|
export interface ImportDefinitionCollection$instance {
|
|
2204
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImportDefinitionCollection: never;
|
|
2205
|
+
|
|
2074
2206
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2075
2207
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2076
2208
|
|
|
@@ -2092,6 +2224,8 @@ export type ImportDefinitionCollection = ImportDefinitionCollection$instance & _
|
|
|
2092
2224
|
|
|
2093
2225
|
|
|
2094
2226
|
export interface ImportDefinitionCollection_Enumerator$instance {
|
|
2227
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImportDefinitionCollection_Enumerator: never;
|
|
2228
|
+
|
|
2095
2229
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2096
2230
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2097
2231
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -2117,6 +2251,8 @@ export type ImportDefinitionCollection_Enumerator = ImportDefinitionCollection_E
|
|
|
2117
2251
|
|
|
2118
2252
|
|
|
2119
2253
|
export interface ImportScope$instance {
|
|
2254
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImportScope: never;
|
|
2255
|
+
|
|
2120
2256
|
readonly ImportsBlob: BlobHandle;
|
|
2121
2257
|
readonly Parent: ImportScopeHandle;
|
|
2122
2258
|
GetImports(): ImportDefinitionCollection;
|
|
@@ -2131,6 +2267,8 @@ export const ImportScope: {
|
|
|
2131
2267
|
export type ImportScope = ImportScope$instance;
|
|
2132
2268
|
|
|
2133
2269
|
export interface ImportScopeCollection$instance {
|
|
2270
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImportScopeCollection: never;
|
|
2271
|
+
|
|
2134
2272
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2135
2273
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2136
2274
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -2155,6 +2293,8 @@ export type ImportScopeCollection = ImportScopeCollection$instance & __ImportSco
|
|
|
2155
2293
|
|
|
2156
2294
|
|
|
2157
2295
|
export interface ImportScopeCollection_Enumerator$instance {
|
|
2296
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImportScopeCollection_Enumerator: never;
|
|
2297
|
+
|
|
2158
2298
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2159
2299
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2160
2300
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -2179,6 +2319,8 @@ export type ImportScopeCollection_Enumerator = ImportScopeCollection_Enumerator$
|
|
|
2179
2319
|
|
|
2180
2320
|
|
|
2181
2321
|
export interface ImportScopeHandle$instance {
|
|
2322
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImportScopeHandle: never;
|
|
2323
|
+
|
|
2182
2324
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2183
2325
|
|
|
2184
2326
|
readonly IsNil: boolean;
|
|
@@ -2204,6 +2346,8 @@ export type ImportScopeHandle = ImportScopeHandle$instance & __ImportScopeHandle
|
|
|
2204
2346
|
|
|
2205
2347
|
|
|
2206
2348
|
export interface InterfaceImplementation$instance {
|
|
2349
|
+
readonly __tsonic_type_System_Reflection_Metadata_InterfaceImplementation: never;
|
|
2350
|
+
|
|
2207
2351
|
readonly Interface: EntityHandle;
|
|
2208
2352
|
GetCustomAttributes(): CustomAttributeHandleCollection;
|
|
2209
2353
|
}
|
|
@@ -2217,6 +2361,8 @@ export const InterfaceImplementation: {
|
|
|
2217
2361
|
export type InterfaceImplementation = InterfaceImplementation$instance;
|
|
2218
2362
|
|
|
2219
2363
|
export interface InterfaceImplementationHandle$instance {
|
|
2364
|
+
readonly __tsonic_type_System_Reflection_Metadata_InterfaceImplementationHandle: never;
|
|
2365
|
+
|
|
2220
2366
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2221
2367
|
|
|
2222
2368
|
readonly IsNil: boolean;
|
|
@@ -2242,6 +2388,8 @@ export type InterfaceImplementationHandle = InterfaceImplementationHandle$instan
|
|
|
2242
2388
|
|
|
2243
2389
|
|
|
2244
2390
|
export interface InterfaceImplementationHandleCollection$instance {
|
|
2391
|
+
readonly __tsonic_type_System_Reflection_Metadata_InterfaceImplementationHandleCollection: never;
|
|
2392
|
+
|
|
2245
2393
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2246
2394
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2247
2395
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -2266,6 +2414,8 @@ export type InterfaceImplementationHandleCollection = InterfaceImplementationHan
|
|
|
2266
2414
|
|
|
2267
2415
|
|
|
2268
2416
|
export interface InterfaceImplementationHandleCollection_Enumerator$instance {
|
|
2417
|
+
readonly __tsonic_type_System_Reflection_Metadata_InterfaceImplementationHandleCollection_Enumerator: never;
|
|
2418
|
+
|
|
2269
2419
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2270
2420
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2271
2421
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -2290,6 +2440,8 @@ export type InterfaceImplementationHandleCollection_Enumerator = InterfaceImplem
|
|
|
2290
2440
|
|
|
2291
2441
|
|
|
2292
2442
|
export interface LocalConstant$instance {
|
|
2443
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalConstant: never;
|
|
2444
|
+
|
|
2293
2445
|
readonly Name: StringHandle;
|
|
2294
2446
|
readonly Signature: BlobHandle;
|
|
2295
2447
|
}
|
|
@@ -2303,6 +2455,8 @@ export const LocalConstant: {
|
|
|
2303
2455
|
export type LocalConstant = LocalConstant$instance;
|
|
2304
2456
|
|
|
2305
2457
|
export interface LocalConstantHandle$instance {
|
|
2458
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalConstantHandle: never;
|
|
2459
|
+
|
|
2306
2460
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2307
2461
|
|
|
2308
2462
|
readonly IsNil: boolean;
|
|
@@ -2328,6 +2482,8 @@ export type LocalConstantHandle = LocalConstantHandle$instance & __LocalConstant
|
|
|
2328
2482
|
|
|
2329
2483
|
|
|
2330
2484
|
export interface LocalConstantHandleCollection$instance {
|
|
2485
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalConstantHandleCollection: never;
|
|
2486
|
+
|
|
2331
2487
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2332
2488
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2333
2489
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -2352,6 +2508,8 @@ export type LocalConstantHandleCollection = LocalConstantHandleCollection$instan
|
|
|
2352
2508
|
|
|
2353
2509
|
|
|
2354
2510
|
export interface LocalConstantHandleCollection_Enumerator$instance {
|
|
2511
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalConstantHandleCollection_Enumerator: never;
|
|
2512
|
+
|
|
2355
2513
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2356
2514
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2357
2515
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -2376,6 +2534,8 @@ export type LocalConstantHandleCollection_Enumerator = LocalConstantHandleCollec
|
|
|
2376
2534
|
|
|
2377
2535
|
|
|
2378
2536
|
export interface LocalScope$instance {
|
|
2537
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalScope: never;
|
|
2538
|
+
|
|
2379
2539
|
readonly EndOffset: int;
|
|
2380
2540
|
readonly ImportScope: ImportScopeHandle;
|
|
2381
2541
|
readonly Length: int;
|
|
@@ -2395,6 +2555,8 @@ export const LocalScope: {
|
|
|
2395
2555
|
export type LocalScope = LocalScope$instance;
|
|
2396
2556
|
|
|
2397
2557
|
export interface LocalScopeHandle$instance {
|
|
2558
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalScopeHandle: never;
|
|
2559
|
+
|
|
2398
2560
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2399
2561
|
|
|
2400
2562
|
readonly IsNil: boolean;
|
|
@@ -2420,6 +2582,8 @@ export type LocalScopeHandle = LocalScopeHandle$instance & __LocalScopeHandle$vi
|
|
|
2420
2582
|
|
|
2421
2583
|
|
|
2422
2584
|
export interface LocalScopeHandleCollection$instance {
|
|
2585
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalScopeHandleCollection: never;
|
|
2586
|
+
|
|
2423
2587
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2424
2588
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2425
2589
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -2444,6 +2608,8 @@ export type LocalScopeHandleCollection = LocalScopeHandleCollection$instance & _
|
|
|
2444
2608
|
|
|
2445
2609
|
|
|
2446
2610
|
export interface LocalScopeHandleCollection_ChildrenEnumerator$instance {
|
|
2611
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalScopeHandleCollection_ChildrenEnumerator: never;
|
|
2612
|
+
|
|
2447
2613
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2448
2614
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2449
2615
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -2468,6 +2634,8 @@ export type LocalScopeHandleCollection_ChildrenEnumerator = LocalScopeHandleColl
|
|
|
2468
2634
|
|
|
2469
2635
|
|
|
2470
2636
|
export interface LocalScopeHandleCollection_Enumerator$instance {
|
|
2637
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalScopeHandleCollection_Enumerator: never;
|
|
2638
|
+
|
|
2471
2639
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2472
2640
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2473
2641
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -2492,6 +2660,8 @@ export type LocalScopeHandleCollection_Enumerator = LocalScopeHandleCollection_E
|
|
|
2492
2660
|
|
|
2493
2661
|
|
|
2494
2662
|
export interface LocalVariable$instance {
|
|
2663
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalVariable: never;
|
|
2664
|
+
|
|
2495
2665
|
readonly Attributes: LocalVariableAttributes;
|
|
2496
2666
|
readonly Index: int;
|
|
2497
2667
|
readonly Name: StringHandle;
|
|
@@ -2506,6 +2676,8 @@ export const LocalVariable: {
|
|
|
2506
2676
|
export type LocalVariable = LocalVariable$instance;
|
|
2507
2677
|
|
|
2508
2678
|
export interface LocalVariableHandle$instance {
|
|
2679
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalVariableHandle: never;
|
|
2680
|
+
|
|
2509
2681
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2510
2682
|
|
|
2511
2683
|
readonly IsNil: boolean;
|
|
@@ -2531,6 +2703,8 @@ export type LocalVariableHandle = LocalVariableHandle$instance & __LocalVariable
|
|
|
2531
2703
|
|
|
2532
2704
|
|
|
2533
2705
|
export interface LocalVariableHandleCollection$instance {
|
|
2706
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalVariableHandleCollection: never;
|
|
2707
|
+
|
|
2534
2708
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2535
2709
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2536
2710
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -2555,6 +2729,8 @@ export type LocalVariableHandleCollection = LocalVariableHandleCollection$instan
|
|
|
2555
2729
|
|
|
2556
2730
|
|
|
2557
2731
|
export interface LocalVariableHandleCollection_Enumerator$instance {
|
|
2732
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalVariableHandleCollection_Enumerator: never;
|
|
2733
|
+
|
|
2558
2734
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2559
2735
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2560
2736
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -2579,6 +2755,8 @@ export type LocalVariableHandleCollection_Enumerator = LocalVariableHandleCollec
|
|
|
2579
2755
|
|
|
2580
2756
|
|
|
2581
2757
|
export interface ManifestResource$instance {
|
|
2758
|
+
readonly __tsonic_type_System_Reflection_Metadata_ManifestResource: never;
|
|
2759
|
+
|
|
2582
2760
|
readonly Attributes: ManifestResourceAttributes;
|
|
2583
2761
|
readonly Implementation: EntityHandle;
|
|
2584
2762
|
readonly Name: StringHandle;
|
|
@@ -2595,6 +2773,8 @@ export const ManifestResource: {
|
|
|
2595
2773
|
export type ManifestResource = ManifestResource$instance;
|
|
2596
2774
|
|
|
2597
2775
|
export interface ManifestResourceHandle$instance {
|
|
2776
|
+
readonly __tsonic_type_System_Reflection_Metadata_ManifestResourceHandle: never;
|
|
2777
|
+
|
|
2598
2778
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2599
2779
|
|
|
2600
2780
|
readonly IsNil: boolean;
|
|
@@ -2620,6 +2800,8 @@ export type ManifestResourceHandle = ManifestResourceHandle$instance & __Manifes
|
|
|
2620
2800
|
|
|
2621
2801
|
|
|
2622
2802
|
export interface ManifestResourceHandleCollection$instance {
|
|
2803
|
+
readonly __tsonic_type_System_Reflection_Metadata_ManifestResourceHandleCollection: never;
|
|
2804
|
+
|
|
2623
2805
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2624
2806
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2625
2807
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -2644,6 +2826,8 @@ export type ManifestResourceHandleCollection = ManifestResourceHandleCollection$
|
|
|
2644
2826
|
|
|
2645
2827
|
|
|
2646
2828
|
export interface ManifestResourceHandleCollection_Enumerator$instance {
|
|
2829
|
+
readonly __tsonic_type_System_Reflection_Metadata_ManifestResourceHandleCollection_Enumerator: never;
|
|
2830
|
+
|
|
2647
2831
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2648
2832
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2649
2833
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -2668,6 +2852,8 @@ export type ManifestResourceHandleCollection_Enumerator = ManifestResourceHandle
|
|
|
2668
2852
|
|
|
2669
2853
|
|
|
2670
2854
|
export interface MemberReference$instance {
|
|
2855
|
+
readonly __tsonic_type_System_Reflection_Metadata_MemberReference: never;
|
|
2856
|
+
|
|
2671
2857
|
readonly Name: StringHandle;
|
|
2672
2858
|
readonly Parent: EntityHandle;
|
|
2673
2859
|
readonly Signature: BlobHandle;
|
|
@@ -2686,6 +2872,8 @@ export const MemberReference: {
|
|
|
2686
2872
|
export type MemberReference = MemberReference$instance;
|
|
2687
2873
|
|
|
2688
2874
|
export interface MemberReferenceHandle$instance {
|
|
2875
|
+
readonly __tsonic_type_System_Reflection_Metadata_MemberReferenceHandle: never;
|
|
2876
|
+
|
|
2689
2877
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2690
2878
|
|
|
2691
2879
|
readonly IsNil: boolean;
|
|
@@ -2711,6 +2899,8 @@ export type MemberReferenceHandle = MemberReferenceHandle$instance & __MemberRef
|
|
|
2711
2899
|
|
|
2712
2900
|
|
|
2713
2901
|
export interface MemberReferenceHandleCollection$instance {
|
|
2902
|
+
readonly __tsonic_type_System_Reflection_Metadata_MemberReferenceHandleCollection: never;
|
|
2903
|
+
|
|
2714
2904
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2715
2905
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2716
2906
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -2735,6 +2925,8 @@ export type MemberReferenceHandleCollection = MemberReferenceHandleCollection$in
|
|
|
2735
2925
|
|
|
2736
2926
|
|
|
2737
2927
|
export interface MemberReferenceHandleCollection_Enumerator$instance {
|
|
2928
|
+
readonly __tsonic_type_System_Reflection_Metadata_MemberReferenceHandleCollection_Enumerator: never;
|
|
2929
|
+
|
|
2738
2930
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2739
2931
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2740
2932
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -2759,6 +2951,8 @@ export type MemberReferenceHandleCollection_Enumerator = MemberReferenceHandleCo
|
|
|
2759
2951
|
|
|
2760
2952
|
|
|
2761
2953
|
export interface MetadataStringComparer$instance {
|
|
2954
|
+
readonly __tsonic_type_System_Reflection_Metadata_MetadataStringComparer: never;
|
|
2955
|
+
|
|
2762
2956
|
Equals(handle: StringHandle, value: string): boolean;
|
|
2763
2957
|
Equals(handle: StringHandle, value: string, ignoreCase: boolean): boolean;
|
|
2764
2958
|
Equals(handle: NamespaceDefinitionHandle, value: string): boolean;
|
|
@@ -2778,6 +2972,8 @@ export const MetadataStringComparer: {
|
|
|
2778
2972
|
export type MetadataStringComparer = MetadataStringComparer$instance;
|
|
2779
2973
|
|
|
2780
2974
|
export interface MethodDebugInformation$instance {
|
|
2975
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDebugInformation: never;
|
|
2976
|
+
|
|
2781
2977
|
readonly Document: DocumentHandle;
|
|
2782
2978
|
readonly LocalSignature: StandaloneSignatureHandle;
|
|
2783
2979
|
readonly SequencePointsBlob: BlobHandle;
|
|
@@ -2794,6 +2990,8 @@ export const MethodDebugInformation: {
|
|
|
2794
2990
|
export type MethodDebugInformation = MethodDebugInformation$instance;
|
|
2795
2991
|
|
|
2796
2992
|
export interface MethodDebugInformationHandle$instance {
|
|
2993
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDebugInformationHandle: never;
|
|
2994
|
+
|
|
2797
2995
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2798
2996
|
|
|
2799
2997
|
readonly IsNil: boolean;
|
|
@@ -2820,6 +3018,8 @@ export type MethodDebugInformationHandle = MethodDebugInformationHandle$instance
|
|
|
2820
3018
|
|
|
2821
3019
|
|
|
2822
3020
|
export interface MethodDebugInformationHandleCollection$instance {
|
|
3021
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDebugInformationHandleCollection: never;
|
|
3022
|
+
|
|
2823
3023
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2824
3024
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2825
3025
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -2844,6 +3044,8 @@ export type MethodDebugInformationHandleCollection = MethodDebugInformationHandl
|
|
|
2844
3044
|
|
|
2845
3045
|
|
|
2846
3046
|
export interface MethodDebugInformationHandleCollection_Enumerator$instance {
|
|
3047
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDebugInformationHandleCollection_Enumerator: never;
|
|
3048
|
+
|
|
2847
3049
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2848
3050
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2849
3051
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -2868,6 +3070,8 @@ export type MethodDebugInformationHandleCollection_Enumerator = MethodDebugInfor
|
|
|
2868
3070
|
|
|
2869
3071
|
|
|
2870
3072
|
export interface MethodDefinition$instance {
|
|
3073
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDefinition: never;
|
|
3074
|
+
|
|
2871
3075
|
readonly Attributes: MethodAttributes;
|
|
2872
3076
|
readonly ImplAttributes: MethodImplAttributes;
|
|
2873
3077
|
readonly Name: StringHandle;
|
|
@@ -2891,6 +3095,8 @@ export const MethodDefinition: {
|
|
|
2891
3095
|
export type MethodDefinition = MethodDefinition$instance;
|
|
2892
3096
|
|
|
2893
3097
|
export interface MethodDefinitionHandle$instance {
|
|
3098
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDefinitionHandle: never;
|
|
3099
|
+
|
|
2894
3100
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2895
3101
|
|
|
2896
3102
|
readonly IsNil: boolean;
|
|
@@ -2917,6 +3123,8 @@ export type MethodDefinitionHandle = MethodDefinitionHandle$instance & __MethodD
|
|
|
2917
3123
|
|
|
2918
3124
|
|
|
2919
3125
|
export interface MethodDefinitionHandleCollection$instance {
|
|
3126
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDefinitionHandleCollection: never;
|
|
3127
|
+
|
|
2920
3128
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2921
3129
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2922
3130
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -2941,6 +3149,8 @@ export type MethodDefinitionHandleCollection = MethodDefinitionHandleCollection$
|
|
|
2941
3149
|
|
|
2942
3150
|
|
|
2943
3151
|
export interface MethodDefinitionHandleCollection_Enumerator$instance {
|
|
3152
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDefinitionHandleCollection_Enumerator: never;
|
|
3153
|
+
|
|
2944
3154
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2945
3155
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2946
3156
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -2965,6 +3175,8 @@ export type MethodDefinitionHandleCollection_Enumerator = MethodDefinitionHandle
|
|
|
2965
3175
|
|
|
2966
3176
|
|
|
2967
3177
|
export interface MethodImplementation$instance {
|
|
3178
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodImplementation: never;
|
|
3179
|
+
|
|
2968
3180
|
readonly MethodBody: EntityHandle;
|
|
2969
3181
|
readonly MethodDeclaration: EntityHandle;
|
|
2970
3182
|
readonly Type: TypeDefinitionHandle;
|
|
@@ -2980,6 +3192,8 @@ export const MethodImplementation: {
|
|
|
2980
3192
|
export type MethodImplementation = MethodImplementation$instance;
|
|
2981
3193
|
|
|
2982
3194
|
export interface MethodImplementationHandle$instance {
|
|
3195
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodImplementationHandle: never;
|
|
3196
|
+
|
|
2983
3197
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2984
3198
|
|
|
2985
3199
|
readonly IsNil: boolean;
|
|
@@ -3005,6 +3219,8 @@ export type MethodImplementationHandle = MethodImplementationHandle$instance & _
|
|
|
3005
3219
|
|
|
3006
3220
|
|
|
3007
3221
|
export interface MethodImplementationHandleCollection$instance {
|
|
3222
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodImplementationHandleCollection: never;
|
|
3223
|
+
|
|
3008
3224
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
3009
3225
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
3010
3226
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -3029,6 +3245,8 @@ export type MethodImplementationHandleCollection = MethodImplementationHandleCol
|
|
|
3029
3245
|
|
|
3030
3246
|
|
|
3031
3247
|
export interface MethodImplementationHandleCollection_Enumerator$instance {
|
|
3248
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodImplementationHandleCollection_Enumerator: never;
|
|
3249
|
+
|
|
3032
3250
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3033
3251
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3034
3252
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -3053,6 +3271,8 @@ export type MethodImplementationHandleCollection_Enumerator = MethodImplementati
|
|
|
3053
3271
|
|
|
3054
3272
|
|
|
3055
3273
|
export interface MethodImport$instance {
|
|
3274
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodImport: never;
|
|
3275
|
+
|
|
3056
3276
|
readonly Attributes: MethodImportAttributes;
|
|
3057
3277
|
readonly Module: ModuleReferenceHandle;
|
|
3058
3278
|
readonly Name: StringHandle;
|
|
@@ -3067,6 +3287,8 @@ export const MethodImport: {
|
|
|
3067
3287
|
export type MethodImport = MethodImport$instance;
|
|
3068
3288
|
|
|
3069
3289
|
export interface MethodSignature_1$instance<TType> {
|
|
3290
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodSignature_1: never;
|
|
3291
|
+
|
|
3070
3292
|
readonly GenericParameterCount: int;
|
|
3071
3293
|
readonly Header: SignatureHeader;
|
|
3072
3294
|
readonly ParameterTypes: ImmutableArray_1<TType>;
|
|
@@ -3083,6 +3305,8 @@ export const MethodSignature_1: {
|
|
|
3083
3305
|
export type MethodSignature_1<TType> = MethodSignature_1$instance<TType>;
|
|
3084
3306
|
|
|
3085
3307
|
export interface MethodSpecification$instance {
|
|
3308
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodSpecification: never;
|
|
3309
|
+
|
|
3086
3310
|
readonly Method: EntityHandle;
|
|
3087
3311
|
readonly Signature: BlobHandle;
|
|
3088
3312
|
DecodeSignature<TType, TGenericContext>(provider: ISignatureTypeProvider_2<TType, TGenericContext>, genericContext: TGenericContext): ImmutableArray_1<TType>;
|
|
@@ -3098,6 +3322,8 @@ export const MethodSpecification: {
|
|
|
3098
3322
|
export type MethodSpecification = MethodSpecification$instance;
|
|
3099
3323
|
|
|
3100
3324
|
export interface MethodSpecificationHandle$instance {
|
|
3325
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodSpecificationHandle: never;
|
|
3326
|
+
|
|
3101
3327
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3102
3328
|
|
|
3103
3329
|
readonly IsNil: boolean;
|
|
@@ -3123,6 +3349,8 @@ export type MethodSpecificationHandle = MethodSpecificationHandle$instance & __M
|
|
|
3123
3349
|
|
|
3124
3350
|
|
|
3125
3351
|
export interface ModuleDefinition$instance {
|
|
3352
|
+
readonly __tsonic_type_System_Reflection_Metadata_ModuleDefinition: never;
|
|
3353
|
+
|
|
3126
3354
|
readonly BaseGenerationId: GuidHandle;
|
|
3127
3355
|
readonly Generation: int;
|
|
3128
3356
|
readonly GenerationId: GuidHandle;
|
|
@@ -3140,6 +3368,8 @@ export const ModuleDefinition: {
|
|
|
3140
3368
|
export type ModuleDefinition = ModuleDefinition$instance;
|
|
3141
3369
|
|
|
3142
3370
|
export interface ModuleDefinitionHandle$instance {
|
|
3371
|
+
readonly __tsonic_type_System_Reflection_Metadata_ModuleDefinitionHandle: never;
|
|
3372
|
+
|
|
3143
3373
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3144
3374
|
|
|
3145
3375
|
readonly IsNil: boolean;
|
|
@@ -3165,6 +3395,8 @@ export type ModuleDefinitionHandle = ModuleDefinitionHandle$instance & __ModuleD
|
|
|
3165
3395
|
|
|
3166
3396
|
|
|
3167
3397
|
export interface ModuleReference$instance {
|
|
3398
|
+
readonly __tsonic_type_System_Reflection_Metadata_ModuleReference: never;
|
|
3399
|
+
|
|
3168
3400
|
readonly Name: StringHandle;
|
|
3169
3401
|
GetCustomAttributes(): CustomAttributeHandleCollection;
|
|
3170
3402
|
}
|
|
@@ -3178,6 +3410,8 @@ export const ModuleReference: {
|
|
|
3178
3410
|
export type ModuleReference = ModuleReference$instance;
|
|
3179
3411
|
|
|
3180
3412
|
export interface ModuleReferenceHandle$instance {
|
|
3413
|
+
readonly __tsonic_type_System_Reflection_Metadata_ModuleReferenceHandle: never;
|
|
3414
|
+
|
|
3181
3415
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3182
3416
|
|
|
3183
3417
|
readonly IsNil: boolean;
|
|
@@ -3203,6 +3437,8 @@ export type ModuleReferenceHandle = ModuleReferenceHandle$instance & __ModuleRef
|
|
|
3203
3437
|
|
|
3204
3438
|
|
|
3205
3439
|
export interface NamespaceDefinition$instance {
|
|
3440
|
+
readonly __tsonic_type_System_Reflection_Metadata_NamespaceDefinition: never;
|
|
3441
|
+
|
|
3206
3442
|
readonly ExportedTypes: ImmutableArray_1<ExportedTypeHandle>;
|
|
3207
3443
|
readonly Name: StringHandle;
|
|
3208
3444
|
readonly NamespaceDefinitions: ImmutableArray_1<NamespaceDefinitionHandle>;
|
|
@@ -3219,6 +3455,8 @@ export const NamespaceDefinition: {
|
|
|
3219
3455
|
export type NamespaceDefinition = NamespaceDefinition$instance;
|
|
3220
3456
|
|
|
3221
3457
|
export interface NamespaceDefinitionHandle$instance {
|
|
3458
|
+
readonly __tsonic_type_System_Reflection_Metadata_NamespaceDefinitionHandle: never;
|
|
3459
|
+
|
|
3222
3460
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3223
3461
|
|
|
3224
3462
|
readonly IsNil: boolean;
|
|
@@ -3244,6 +3482,8 @@ export type NamespaceDefinitionHandle = NamespaceDefinitionHandle$instance & __N
|
|
|
3244
3482
|
|
|
3245
3483
|
|
|
3246
3484
|
export interface Parameter$instance {
|
|
3485
|
+
readonly __tsonic_type_System_Reflection_Metadata_Parameter: never;
|
|
3486
|
+
|
|
3247
3487
|
readonly Attributes: ParameterAttributes;
|
|
3248
3488
|
readonly Name: StringHandle;
|
|
3249
3489
|
readonly SequenceNumber: int;
|
|
@@ -3261,6 +3501,8 @@ export const Parameter: {
|
|
|
3261
3501
|
export type Parameter = Parameter$instance;
|
|
3262
3502
|
|
|
3263
3503
|
export interface ParameterHandle$instance {
|
|
3504
|
+
readonly __tsonic_type_System_Reflection_Metadata_ParameterHandle: never;
|
|
3505
|
+
|
|
3264
3506
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3265
3507
|
|
|
3266
3508
|
readonly IsNil: boolean;
|
|
@@ -3286,6 +3528,8 @@ export type ParameterHandle = ParameterHandle$instance & __ParameterHandle$views
|
|
|
3286
3528
|
|
|
3287
3529
|
|
|
3288
3530
|
export interface ParameterHandleCollection$instance {
|
|
3531
|
+
readonly __tsonic_type_System_Reflection_Metadata_ParameterHandleCollection: never;
|
|
3532
|
+
|
|
3289
3533
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
3290
3534
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
3291
3535
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -3310,6 +3554,8 @@ export type ParameterHandleCollection = ParameterHandleCollection$instance & __P
|
|
|
3310
3554
|
|
|
3311
3555
|
|
|
3312
3556
|
export interface ParameterHandleCollection_Enumerator$instance {
|
|
3557
|
+
readonly __tsonic_type_System_Reflection_Metadata_ParameterHandleCollection_Enumerator: never;
|
|
3558
|
+
|
|
3313
3559
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3314
3560
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3315
3561
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -3334,6 +3580,8 @@ export type ParameterHandleCollection_Enumerator = ParameterHandleCollection_Enu
|
|
|
3334
3580
|
|
|
3335
3581
|
|
|
3336
3582
|
export interface PropertyAccessors$instance {
|
|
3583
|
+
readonly __tsonic_type_System_Reflection_Metadata_PropertyAccessors: never;
|
|
3584
|
+
|
|
3337
3585
|
readonly Getter: MethodDefinitionHandle;
|
|
3338
3586
|
readonly Others: ImmutableArray_1<MethodDefinitionHandle>;
|
|
3339
3587
|
readonly Setter: MethodDefinitionHandle;
|
|
@@ -3348,6 +3596,8 @@ export const PropertyAccessors: {
|
|
|
3348
3596
|
export type PropertyAccessors = PropertyAccessors$instance;
|
|
3349
3597
|
|
|
3350
3598
|
export interface PropertyDefinition$instance {
|
|
3599
|
+
readonly __tsonic_type_System_Reflection_Metadata_PropertyDefinition: never;
|
|
3600
|
+
|
|
3351
3601
|
readonly Attributes: PropertyAttributes;
|
|
3352
3602
|
readonly Name: StringHandle;
|
|
3353
3603
|
readonly Signature: BlobHandle;
|
|
@@ -3367,6 +3617,8 @@ export const PropertyDefinition: {
|
|
|
3367
3617
|
export type PropertyDefinition = PropertyDefinition$instance;
|
|
3368
3618
|
|
|
3369
3619
|
export interface PropertyDefinitionHandle$instance {
|
|
3620
|
+
readonly __tsonic_type_System_Reflection_Metadata_PropertyDefinitionHandle: never;
|
|
3621
|
+
|
|
3370
3622
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3371
3623
|
|
|
3372
3624
|
readonly IsNil: boolean;
|
|
@@ -3392,6 +3644,8 @@ export type PropertyDefinitionHandle = PropertyDefinitionHandle$instance & __Pro
|
|
|
3392
3644
|
|
|
3393
3645
|
|
|
3394
3646
|
export interface PropertyDefinitionHandleCollection$instance {
|
|
3647
|
+
readonly __tsonic_type_System_Reflection_Metadata_PropertyDefinitionHandleCollection: never;
|
|
3648
|
+
|
|
3395
3649
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
3396
3650
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
3397
3651
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -3416,6 +3670,8 @@ export type PropertyDefinitionHandleCollection = PropertyDefinitionHandleCollect
|
|
|
3416
3670
|
|
|
3417
3671
|
|
|
3418
3672
|
export interface PropertyDefinitionHandleCollection_Enumerator$instance {
|
|
3673
|
+
readonly __tsonic_type_System_Reflection_Metadata_PropertyDefinitionHandleCollection_Enumerator: never;
|
|
3674
|
+
|
|
3419
3675
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3420
3676
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3421
3677
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -3440,6 +3696,8 @@ export type PropertyDefinitionHandleCollection_Enumerator = PropertyDefinitionHa
|
|
|
3440
3696
|
|
|
3441
3697
|
|
|
3442
3698
|
export interface ReservedBlob_1$instance<THandle extends unknown> {
|
|
3699
|
+
readonly __tsonic_type_System_Reflection_Metadata_ReservedBlob_1: never;
|
|
3700
|
+
|
|
3443
3701
|
readonly Content: Blob;
|
|
3444
3702
|
readonly Handle: THandle;
|
|
3445
3703
|
CreateWriter(): BlobWriter;
|
|
@@ -3454,6 +3712,8 @@ export const ReservedBlob_1: {
|
|
|
3454
3712
|
export type ReservedBlob_1<THandle> = ReservedBlob_1$instance<THandle>;
|
|
3455
3713
|
|
|
3456
3714
|
export interface SequencePoint$instance {
|
|
3715
|
+
readonly __tsonic_type_System_Reflection_Metadata_SequencePoint: never;
|
|
3716
|
+
|
|
3457
3717
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3458
3718
|
|
|
3459
3719
|
readonly Document: DocumentHandle;
|
|
@@ -3486,6 +3746,8 @@ export type SequencePoint = SequencePoint$instance & __SequencePoint$views;
|
|
|
3486
3746
|
|
|
3487
3747
|
|
|
3488
3748
|
export interface SequencePointCollection$instance {
|
|
3749
|
+
readonly __tsonic_type_System_Reflection_Metadata_SequencePointCollection: never;
|
|
3750
|
+
|
|
3489
3751
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
3490
3752
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
3491
3753
|
|
|
@@ -3507,6 +3769,8 @@ export type SequencePointCollection = SequencePointCollection$instance & __Seque
|
|
|
3507
3769
|
|
|
3508
3770
|
|
|
3509
3771
|
export interface SequencePointCollection_Enumerator$instance {
|
|
3772
|
+
readonly __tsonic_type_System_Reflection_Metadata_SequencePointCollection_Enumerator: never;
|
|
3773
|
+
|
|
3510
3774
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3511
3775
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3512
3776
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -3532,6 +3796,8 @@ export type SequencePointCollection_Enumerator = SequencePointCollection_Enumera
|
|
|
3532
3796
|
|
|
3533
3797
|
|
|
3534
3798
|
export interface SignatureHeader$instance {
|
|
3799
|
+
readonly __tsonic_type_System_Reflection_Metadata_SignatureHeader: never;
|
|
3800
|
+
|
|
3535
3801
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3536
3802
|
|
|
3537
3803
|
readonly Attributes: SignatureAttributes;
|
|
@@ -3566,6 +3832,8 @@ export type SignatureHeader = SignatureHeader$instance & __SignatureHeader$views
|
|
|
3566
3832
|
|
|
3567
3833
|
|
|
3568
3834
|
export interface StandaloneSignature$instance {
|
|
3835
|
+
readonly __tsonic_type_System_Reflection_Metadata_StandaloneSignature: never;
|
|
3836
|
+
|
|
3569
3837
|
readonly Signature: BlobHandle;
|
|
3570
3838
|
DecodeLocalSignature<TType, TGenericContext>(provider: ISignatureTypeProvider_2<TType, TGenericContext>, genericContext: TGenericContext): ImmutableArray_1<TType>;
|
|
3571
3839
|
DecodeMethodSignature<TType, TGenericContext>(provider: ISignatureTypeProvider_2<TType, TGenericContext>, genericContext: TGenericContext): MethodSignature_1<TType>;
|
|
@@ -3582,6 +3850,8 @@ export const StandaloneSignature: {
|
|
|
3582
3850
|
export type StandaloneSignature = StandaloneSignature$instance;
|
|
3583
3851
|
|
|
3584
3852
|
export interface StandaloneSignatureHandle$instance {
|
|
3853
|
+
readonly __tsonic_type_System_Reflection_Metadata_StandaloneSignatureHandle: never;
|
|
3854
|
+
|
|
3585
3855
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3586
3856
|
|
|
3587
3857
|
readonly IsNil: boolean;
|
|
@@ -3607,6 +3877,8 @@ export type StandaloneSignatureHandle = StandaloneSignatureHandle$instance & __S
|
|
|
3607
3877
|
|
|
3608
3878
|
|
|
3609
3879
|
export interface StringHandle$instance {
|
|
3880
|
+
readonly __tsonic_type_System_Reflection_Metadata_StringHandle: never;
|
|
3881
|
+
|
|
3610
3882
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3611
3883
|
|
|
3612
3884
|
readonly IsNil: boolean;
|
|
@@ -3632,6 +3904,8 @@ export type StringHandle = StringHandle$instance & __StringHandle$views;
|
|
|
3632
3904
|
|
|
3633
3905
|
|
|
3634
3906
|
export interface TypeDefinition$instance {
|
|
3907
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeDefinition: never;
|
|
3908
|
+
|
|
3635
3909
|
readonly Attributes: TypeAttributes;
|
|
3636
3910
|
readonly BaseType: EntityHandle;
|
|
3637
3911
|
readonly IsNested: boolean;
|
|
@@ -3661,6 +3935,8 @@ export const TypeDefinition: {
|
|
|
3661
3935
|
export type TypeDefinition = TypeDefinition$instance;
|
|
3662
3936
|
|
|
3663
3937
|
export interface TypeDefinitionHandle$instance {
|
|
3938
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeDefinitionHandle: never;
|
|
3939
|
+
|
|
3664
3940
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3665
3941
|
|
|
3666
3942
|
readonly IsNil: boolean;
|
|
@@ -3686,6 +3962,8 @@ export type TypeDefinitionHandle = TypeDefinitionHandle$instance & __TypeDefinit
|
|
|
3686
3962
|
|
|
3687
3963
|
|
|
3688
3964
|
export interface TypeDefinitionHandleCollection$instance {
|
|
3965
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeDefinitionHandleCollection: never;
|
|
3966
|
+
|
|
3689
3967
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
3690
3968
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
3691
3969
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -3710,6 +3988,8 @@ export type TypeDefinitionHandleCollection = TypeDefinitionHandleCollection$inst
|
|
|
3710
3988
|
|
|
3711
3989
|
|
|
3712
3990
|
export interface TypeDefinitionHandleCollection_Enumerator$instance {
|
|
3991
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeDefinitionHandleCollection_Enumerator: never;
|
|
3992
|
+
|
|
3713
3993
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3714
3994
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3715
3995
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -3734,6 +4014,8 @@ export type TypeDefinitionHandleCollection_Enumerator = TypeDefinitionHandleColl
|
|
|
3734
4014
|
|
|
3735
4015
|
|
|
3736
4016
|
export interface TypeLayout$instance {
|
|
4017
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeLayout: never;
|
|
4018
|
+
|
|
3737
4019
|
readonly IsDefault: boolean;
|
|
3738
4020
|
readonly PackingSize: int;
|
|
3739
4021
|
readonly Size: int;
|
|
@@ -3748,6 +4030,8 @@ export const TypeLayout: {
|
|
|
3748
4030
|
export type TypeLayout = TypeLayout$instance;
|
|
3749
4031
|
|
|
3750
4032
|
export interface TypeReference$instance {
|
|
4033
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeReference: never;
|
|
4034
|
+
|
|
3751
4035
|
readonly Name: StringHandle;
|
|
3752
4036
|
readonly Namespace: StringHandle;
|
|
3753
4037
|
readonly ResolutionScope: EntityHandle;
|
|
@@ -3762,6 +4046,8 @@ export const TypeReference: {
|
|
|
3762
4046
|
export type TypeReference = TypeReference$instance;
|
|
3763
4047
|
|
|
3764
4048
|
export interface TypeReferenceHandle$instance {
|
|
4049
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeReferenceHandle: never;
|
|
4050
|
+
|
|
3765
4051
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3766
4052
|
|
|
3767
4053
|
readonly IsNil: boolean;
|
|
@@ -3787,6 +4073,8 @@ export type TypeReferenceHandle = TypeReferenceHandle$instance & __TypeReference
|
|
|
3787
4073
|
|
|
3788
4074
|
|
|
3789
4075
|
export interface TypeReferenceHandleCollection$instance {
|
|
4076
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeReferenceHandleCollection: never;
|
|
4077
|
+
|
|
3790
4078
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
3791
4079
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
3792
4080
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -3811,6 +4099,8 @@ export type TypeReferenceHandleCollection = TypeReferenceHandleCollection$instan
|
|
|
3811
4099
|
|
|
3812
4100
|
|
|
3813
4101
|
export interface TypeReferenceHandleCollection_Enumerator$instance {
|
|
4102
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeReferenceHandleCollection_Enumerator: never;
|
|
4103
|
+
|
|
3814
4104
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3815
4105
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3816
4106
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -3835,6 +4125,8 @@ export type TypeReferenceHandleCollection_Enumerator = TypeReferenceHandleCollec
|
|
|
3835
4125
|
|
|
3836
4126
|
|
|
3837
4127
|
export interface TypeSpecification$instance {
|
|
4128
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeSpecification: never;
|
|
4129
|
+
|
|
3838
4130
|
readonly Signature: BlobHandle;
|
|
3839
4131
|
DecodeSignature<TType, TGenericContext>(provider: ISignatureTypeProvider_2<TType, TGenericContext>, genericContext: TGenericContext): TType;
|
|
3840
4132
|
GetCustomAttributes(): CustomAttributeHandleCollection;
|
|
@@ -3849,6 +4141,8 @@ export const TypeSpecification: {
|
|
|
3849
4141
|
export type TypeSpecification = TypeSpecification$instance;
|
|
3850
4142
|
|
|
3851
4143
|
export interface TypeSpecificationHandle$instance {
|
|
4144
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeSpecificationHandle: never;
|
|
4145
|
+
|
|
3852
4146
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3853
4147
|
|
|
3854
4148
|
readonly IsNil: boolean;
|
|
@@ -3874,6 +4168,8 @@ export type TypeSpecificationHandle = TypeSpecificationHandle$instance & __TypeS
|
|
|
3874
4168
|
|
|
3875
4169
|
|
|
3876
4170
|
export interface UserStringHandle$instance {
|
|
4171
|
+
readonly __tsonic_type_System_Reflection_Metadata_UserStringHandle: never;
|
|
4172
|
+
|
|
3877
4173
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3878
4174
|
|
|
3879
4175
|
readonly IsNil: boolean;
|
|
@@ -3899,6 +4195,8 @@ export type UserStringHandle = UserStringHandle$instance & __UserStringHandle$vi
|
|
|
3899
4195
|
|
|
3900
4196
|
|
|
3901
4197
|
export interface AssemblyNameInfo$instance {
|
|
4198
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyNameInfo: never;
|
|
4199
|
+
|
|
3902
4200
|
readonly CultureName: string | undefined;
|
|
3903
4201
|
readonly Flags: AssemblyNameFlags;
|
|
3904
4202
|
readonly FullName: string;
|
|
@@ -3919,6 +4217,8 @@ export const AssemblyNameInfo: {
|
|
|
3919
4217
|
export type AssemblyNameInfo = AssemblyNameInfo$instance;
|
|
3920
4218
|
|
|
3921
4219
|
export interface BlobBuilder$instance {
|
|
4220
|
+
readonly __tsonic_type_System_Reflection_Metadata_BlobBuilder: never;
|
|
4221
|
+
|
|
3922
4222
|
readonly Count: int;
|
|
3923
4223
|
Align(alignment: int): void;
|
|
3924
4224
|
AllocateChunk(minimalSize: int): BlobBuilder;
|
|
@@ -3982,6 +4282,8 @@ export const BlobBuilder: {
|
|
|
3982
4282
|
export type BlobBuilder = BlobBuilder$instance;
|
|
3983
4283
|
|
|
3984
4284
|
export interface DebugMetadataHeader$instance {
|
|
4285
|
+
readonly __tsonic_type_System_Reflection_Metadata_DebugMetadataHeader: never;
|
|
4286
|
+
|
|
3985
4287
|
readonly EntryPoint: MethodDefinitionHandle;
|
|
3986
4288
|
readonly Id: ImmutableArray_1<System_Internal.Byte>;
|
|
3987
4289
|
readonly IdStartOffset: int;
|
|
@@ -3995,6 +4297,8 @@ export const DebugMetadataHeader: {
|
|
|
3995
4297
|
export type DebugMetadataHeader = DebugMetadataHeader$instance;
|
|
3996
4298
|
|
|
3997
4299
|
export interface HandleComparer$instance {
|
|
4300
|
+
readonly __tsonic_type_System_Reflection_Metadata_HandleComparer: never;
|
|
4301
|
+
|
|
3998
4302
|
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
3999
4303
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
4000
4304
|
|
|
@@ -4017,12 +4321,12 @@ export interface __HandleComparer$views {
|
|
|
4017
4321
|
As_IEqualityComparer_1(): System_Collections_Generic_Internal.IEqualityComparer_1$instance<Handle>;
|
|
4018
4322
|
}
|
|
4019
4323
|
|
|
4020
|
-
export interface HandleComparer$instance extends System_Collections_Generic_Internal.IComparer_1$instance<EntityHandle> {}
|
|
4021
|
-
|
|
4022
4324
|
export type HandleComparer = HandleComparer$instance & __HandleComparer$views;
|
|
4023
4325
|
|
|
4024
4326
|
|
|
4025
4327
|
export interface ImageFormatLimitationException$instance extends Exception {
|
|
4328
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImageFormatLimitationException: never;
|
|
4329
|
+
|
|
4026
4330
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
4027
4331
|
|
|
4028
4332
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -4044,6 +4348,8 @@ export type ImageFormatLimitationException = ImageFormatLimitationException$inst
|
|
|
4044
4348
|
|
|
4045
4349
|
|
|
4046
4350
|
export interface MetadataReader$instance {
|
|
4351
|
+
readonly __tsonic_type_System_Reflection_Metadata_MetadataReader: never;
|
|
4352
|
+
|
|
4047
4353
|
readonly AssemblyFiles: AssemblyFileHandleCollection;
|
|
4048
4354
|
readonly AssemblyReferences: AssemblyReferenceHandleCollection;
|
|
4049
4355
|
readonly CustomAttributes: CustomAttributeHandleCollection;
|
|
@@ -4134,7 +4440,9 @@ export const MetadataReader: {
|
|
|
4134
4440
|
|
|
4135
4441
|
export type MetadataReader = MetadataReader$instance;
|
|
4136
4442
|
|
|
4137
|
-
export interface MetadataReaderProvider$instance {
|
|
4443
|
+
export interface MetadataReaderProvider$instance extends System_Internal.IDisposable$instance {
|
|
4444
|
+
readonly __tsonic_type_System_Reflection_Metadata_MetadataReaderProvider: never;
|
|
4445
|
+
|
|
4138
4446
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4139
4447
|
|
|
4140
4448
|
Dispose(): void;
|
|
@@ -4156,12 +4464,12 @@ export interface __MetadataReaderProvider$views {
|
|
|
4156
4464
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
4157
4465
|
}
|
|
4158
4466
|
|
|
4159
|
-
export interface MetadataReaderProvider$instance extends System_Internal.IDisposable$instance {}
|
|
4160
|
-
|
|
4161
4467
|
export type MetadataReaderProvider = MetadataReaderProvider$instance & __MetadataReaderProvider$views;
|
|
4162
4468
|
|
|
4163
4469
|
|
|
4164
4470
|
export interface MetadataStringDecoder$instance {
|
|
4471
|
+
readonly __tsonic_type_System_Reflection_Metadata_MetadataStringDecoder: never;
|
|
4472
|
+
|
|
4165
4473
|
readonly Encoding: Encoding;
|
|
4166
4474
|
GetString(bytes: ptr<byte>, byteCount: int): string;
|
|
4167
4475
|
}
|
|
@@ -4176,6 +4484,8 @@ export const MetadataStringDecoder: {
|
|
|
4176
4484
|
export type MetadataStringDecoder = MetadataStringDecoder$instance;
|
|
4177
4485
|
|
|
4178
4486
|
export interface MetadataUpdateHandlerAttribute$instance extends Attribute {
|
|
4487
|
+
readonly __tsonic_type_System_Reflection_Metadata_MetadataUpdateHandlerAttribute: never;
|
|
4488
|
+
|
|
4179
4489
|
readonly HandlerType: Type;
|
|
4180
4490
|
}
|
|
4181
4491
|
|
|
@@ -4188,6 +4498,8 @@ export const MetadataUpdateHandlerAttribute: {
|
|
|
4188
4498
|
export type MetadataUpdateHandlerAttribute = MetadataUpdateHandlerAttribute$instance;
|
|
4189
4499
|
|
|
4190
4500
|
export interface MethodBodyBlock$instance {
|
|
4501
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodBodyBlock: never;
|
|
4502
|
+
|
|
4191
4503
|
readonly ExceptionRegions: ImmutableArray_1<ExceptionRegion>;
|
|
4192
4504
|
readonly LocalSignature: StandaloneSignatureHandle;
|
|
4193
4505
|
readonly LocalVariablesInitialized: boolean;
|
|
@@ -4207,6 +4519,8 @@ export const MethodBodyBlock: {
|
|
|
4207
4519
|
export type MethodBodyBlock = MethodBodyBlock$instance;
|
|
4208
4520
|
|
|
4209
4521
|
export interface TypeName$instance {
|
|
4522
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeName: never;
|
|
4523
|
+
|
|
4210
4524
|
readonly AssemblyName: AssemblyNameInfo | undefined;
|
|
4211
4525
|
readonly AssemblyQualifiedName: string;
|
|
4212
4526
|
readonly DeclaringType: TypeName;
|
|
@@ -4245,6 +4559,8 @@ export const TypeName: {
|
|
|
4245
4559
|
export type TypeName = TypeName$instance;
|
|
4246
4560
|
|
|
4247
4561
|
export interface TypeNameParseOptions$instance {
|
|
4562
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeNameParseOptions: never;
|
|
4563
|
+
|
|
4248
4564
|
MaxNodes: int;
|
|
4249
4565
|
}
|
|
4250
4566
|
|