@tsonic/dotnet 10.0.4 → 10.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +10 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +42 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +60 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +12 -0
- package/Microsoft.Win32/internal/index.d.ts +5 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +68 -0
- package/System/internal/index.d.ts +1438 -161
- package/System.Buffers/internal/index.d.ts +42 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +7 -0
- package/System.Collections/internal/index.d.ts +109 -27
- package/System.Collections.Concurrent/internal/index.d.ts +52 -3
- package/System.Collections.Frozen/internal/index.d.ts +37 -0
- package/System.Collections.Generic/internal/index.d.ts +422 -33
- package/System.Collections.Immutable/internal/index.d.ts +193 -2
- package/System.Collections.ObjectModel/internal/index.d.ts +98 -6
- package/System.Collections.Specialized/internal/index.d.ts +72 -10
- package/System.ComponentModel/internal/index.d.ts +392 -23
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +79 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +120 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +40 -0
- package/System.Data/internal/index.d.ts +273 -20
- package/System.Data.Common/internal/index.d.ts +146 -32
- package/System.Data.SqlTypes/internal/index.d.ts +147 -48
- package/System.Diagnostics/internal/index.d.ts +213 -13
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +28 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +37 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +30 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +56 -6
- package/System.Drawing/internal/index.d.ts +38 -0
- package/System.Dynamic/internal/index.d.ts +50 -5
- package/System.Formats.Asn1/internal/index.d.ts +19 -3
- package/System.Formats.Tar/internal/index.d.ts +26 -6
- package/System.Globalization/internal/index.d.ts +116 -20
- package/System.IO/internal/index.d.ts +141 -18
- package/System.IO.Compression/internal/index.d.ts +46 -9
- package/System.IO.Enumeration/internal/index.d.ts +13 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +18 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +13 -0
- package/System.IO.Pipelines/internal/index.d.ts +22 -2
- package/System.IO.Pipes/internal/index.d.ts +31 -0
- package/System.Linq/internal/index.d.ts +55 -7
- package/System.Linq.Expressions/internal/index.d.ts +103 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +202 -21
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +103 -0
- package/System.Net.Http.Headers/internal/index.d.ts +151 -60
- package/System.Net.Http.Json/internal/index.d.ts +4 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +88 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +89 -0
- package/System.Net.Quic/internal/index.d.ts +31 -6
- package/System.Net.Security/internal/index.d.ts +40 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +59 -6
- package/System.Net.WebSockets/internal/index.d.ts +32 -3
- package/System.Numerics/internal/index.d.ts +173 -7
- package/System.Reflection/internal/index.d.ts +202 -30
- package/System.Reflection.Emit/internal/index.d.ts +80 -9
- package/System.Reflection.Metadata/internal/index.d.ts +650 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +80 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +39 -3
- package/System.Resources/internal/index.d.ts +35 -1
- package/System.Runtime/internal/index.d.ts +18 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +330 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +268 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +82 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +59 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +82 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +56 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +9 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +111 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +5 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +8 -0
- package/System.Runtime.Versioning/internal/index.d.ts +28 -0
- package/System.Security/internal/index.d.ts +46 -6
- package/System.Security.AccessControl/internal/index.d.ts +116 -2
- package/System.Security.Authentication/internal/index.d.ts +8 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +16 -5
- package/System.Security.Claims/internal/index.d.ts +12 -6
- package/System.Security.Cryptography/internal/index.d.ts +568 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +114 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +7 -0
- package/System.Security.Principal/internal/index.d.ts +42 -5
- package/System.Text/internal/index.d.ts +108 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +53 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +21 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +64 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +27 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +75 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +186 -24
- package/System.Threading.Channels/internal/index.d.ts +20 -0
- package/System.Threading.Tasks/internal/index.d.ts +48 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +99 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +6 -0
- package/System.Timers/internal/index.d.ts +11 -3
- package/System.Transactions/internal/index.d.ts +76 -15
- package/System.Web/internal/index.d.ts +4 -0
- package/System.Windows.Input/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +245 -20
- package/System.Xml.Linq/internal/index.d.ts +73 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +171 -0
- package/System.Xml.Serialization/internal/index.d.ts +141 -0
- package/System.Xml.XPath/internal/index.d.ts +27 -8
- package/System.Xml.Xsl/internal/index.d.ts +27 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +112 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -504,6 +504,8 @@ export enum StandaloneSignatureKind {
|
|
|
504
504
|
|
|
505
505
|
|
|
506
506
|
export interface IConstructedTypeProvider_1$instance<TType> extends ISZArrayTypeProvider_1<TType> {
|
|
507
|
+
readonly __tsonic_iface_System_Reflection_Metadata_IConstructedTypeProvider_1: never;
|
|
508
|
+
|
|
507
509
|
GetArrayType(elementType: TType, shape: ArrayShape): TType;
|
|
508
510
|
GetByReferenceType(elementType: TType): TType;
|
|
509
511
|
GetGenericInstantiation(genericType: TType, typeArguments: ImmutableArray_1<TType>): TType;
|
|
@@ -516,6 +518,8 @@ export interface IConstructedTypeProvider_1$instance<TType> extends ISZArrayType
|
|
|
516
518
|
export type IConstructedTypeProvider_1<TType> = IConstructedTypeProvider_1$instance<TType>;
|
|
517
519
|
|
|
518
520
|
export interface ICustomAttributeTypeProvider_1$instance<TType> extends ISimpleTypeProvider_1<TType>, ISZArrayTypeProvider_1<TType> {
|
|
521
|
+
readonly __tsonic_iface_System_Reflection_Metadata_ICustomAttributeTypeProvider_1: never;
|
|
522
|
+
|
|
519
523
|
GetPrimitiveType(typeCode: PrimitiveTypeCode): TType;
|
|
520
524
|
GetSystemType(): TType;
|
|
521
525
|
GetSZArrayType(elementType: TType): TType;
|
|
@@ -532,6 +536,8 @@ export interface ICustomAttributeTypeProvider_1$instance<TType> extends ISimpleT
|
|
|
532
536
|
export type ICustomAttributeTypeProvider_1<TType> = ICustomAttributeTypeProvider_1$instance<TType>;
|
|
533
537
|
|
|
534
538
|
export interface ISignatureTypeProvider_2$instance<TType, TGenericContext> extends ISimpleTypeProvider_1<TType>, IConstructedTypeProvider_1<TType>, ISZArrayTypeProvider_1<TType> {
|
|
539
|
+
readonly __tsonic_iface_System_Reflection_Metadata_ISignatureTypeProvider_2: never;
|
|
540
|
+
|
|
535
541
|
GetArrayType(elementType: TType, shape: ArrayShape): TType;
|
|
536
542
|
GetByReferenceType(elementType: TType): TType;
|
|
537
543
|
GetFunctionPointerType(signature: MethodSignature_1<TType>): TType;
|
|
@@ -552,6 +558,8 @@ export interface ISignatureTypeProvider_2$instance<TType, TGenericContext> exten
|
|
|
552
558
|
export type ISignatureTypeProvider_2<TType, TGenericContext> = ISignatureTypeProvider_2$instance<TType, TGenericContext>;
|
|
553
559
|
|
|
554
560
|
export interface ISimpleTypeProvider_1$instance<TType> {
|
|
561
|
+
readonly __tsonic_iface_System_Reflection_Metadata_ISimpleTypeProvider_1: never;
|
|
562
|
+
|
|
555
563
|
GetPrimitiveType(typeCode: PrimitiveTypeCode): TType;
|
|
556
564
|
GetTypeFromDefinition(reader: MetadataReader, handle: TypeDefinitionHandle, rawTypeKind: byte): TType;
|
|
557
565
|
GetTypeFromReference(reader: MetadataReader, handle: TypeReferenceHandle, rawTypeKind: byte): TType;
|
|
@@ -561,6 +569,8 @@ export interface ISimpleTypeProvider_1$instance<TType> {
|
|
|
561
569
|
export type ISimpleTypeProvider_1<TType> = ISimpleTypeProvider_1$instance<TType>;
|
|
562
570
|
|
|
563
571
|
export interface ISZArrayTypeProvider_1$instance<TType> {
|
|
572
|
+
readonly __tsonic_iface_System_Reflection_Metadata_ISZArrayTypeProvider_1: never;
|
|
573
|
+
|
|
564
574
|
GetSZArrayType(elementType: TType): TType;
|
|
565
575
|
}
|
|
566
576
|
|
|
@@ -568,6 +578,8 @@ export interface ISZArrayTypeProvider_1$instance<TType> {
|
|
|
568
578
|
export type ISZArrayTypeProvider_1<TType> = ISZArrayTypeProvider_1$instance<TType>;
|
|
569
579
|
|
|
570
580
|
export interface ArrayShape$instance {
|
|
581
|
+
readonly __tsonic_type_System_Reflection_Metadata_ArrayShape: never;
|
|
582
|
+
|
|
571
583
|
readonly LowerBounds: ImmutableArray_1<System_Internal.Int32>;
|
|
572
584
|
readonly Rank: int;
|
|
573
585
|
readonly Sizes: ImmutableArray_1<System_Internal.Int32>;
|
|
@@ -582,6 +594,8 @@ export const ArrayShape: {
|
|
|
582
594
|
export type ArrayShape = ArrayShape$instance;
|
|
583
595
|
|
|
584
596
|
export interface AssemblyDefinition$instance {
|
|
597
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyDefinition: never;
|
|
598
|
+
|
|
585
599
|
readonly Culture: StringHandle;
|
|
586
600
|
readonly Flags: AssemblyFlags;
|
|
587
601
|
readonly HashAlgorithm: AssemblyHashAlgorithm;
|
|
@@ -603,6 +617,10 @@ export const AssemblyDefinition: {
|
|
|
603
617
|
export type AssemblyDefinition = AssemblyDefinition$instance;
|
|
604
618
|
|
|
605
619
|
export interface AssemblyDefinitionHandle$instance {
|
|
620
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyDefinitionHandle: never;
|
|
621
|
+
|
|
622
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
623
|
+
|
|
606
624
|
readonly IsNil: boolean;
|
|
607
625
|
Equals(obj: unknown): boolean;
|
|
608
626
|
Equals(other: AssemblyDefinitionHandle): boolean;
|
|
@@ -626,6 +644,8 @@ export type AssemblyDefinitionHandle = AssemblyDefinitionHandle$instance & __Ass
|
|
|
626
644
|
|
|
627
645
|
|
|
628
646
|
export interface AssemblyFile$instance {
|
|
647
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyFile: never;
|
|
648
|
+
|
|
629
649
|
readonly ContainsMetadata: boolean;
|
|
630
650
|
readonly HashValue: BlobHandle;
|
|
631
651
|
readonly Name: StringHandle;
|
|
@@ -641,6 +661,10 @@ export const AssemblyFile: {
|
|
|
641
661
|
export type AssemblyFile = AssemblyFile$instance;
|
|
642
662
|
|
|
643
663
|
export interface AssemblyFileHandle$instance {
|
|
664
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyFileHandle: never;
|
|
665
|
+
|
|
666
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
667
|
+
|
|
644
668
|
readonly IsNil: boolean;
|
|
645
669
|
Equals(obj: unknown): boolean;
|
|
646
670
|
Equals(other: AssemblyFileHandle): boolean;
|
|
@@ -664,6 +688,12 @@ export type AssemblyFileHandle = AssemblyFileHandle$instance & __AssemblyFileHan
|
|
|
664
688
|
|
|
665
689
|
|
|
666
690
|
export interface AssemblyFileHandleCollection$instance {
|
|
691
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyFileHandleCollection: never;
|
|
692
|
+
|
|
693
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
694
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
695
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
696
|
+
|
|
667
697
|
readonly Count: int;
|
|
668
698
|
GetEnumerator(): AssemblyFileHandleCollection_Enumerator;
|
|
669
699
|
}
|
|
@@ -684,6 +714,12 @@ export type AssemblyFileHandleCollection = AssemblyFileHandleCollection$instance
|
|
|
684
714
|
|
|
685
715
|
|
|
686
716
|
export interface AssemblyFileHandleCollection_Enumerator$instance {
|
|
717
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyFileHandleCollection_Enumerator: never;
|
|
718
|
+
|
|
719
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
720
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
721
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
722
|
+
|
|
687
723
|
readonly Current: AssemblyFileHandle;
|
|
688
724
|
MoveNext(): boolean;
|
|
689
725
|
Reset(): void;
|
|
@@ -704,6 +740,8 @@ export type AssemblyFileHandleCollection_Enumerator = AssemblyFileHandleCollecti
|
|
|
704
740
|
|
|
705
741
|
|
|
706
742
|
export interface AssemblyReference$instance {
|
|
743
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyReference: never;
|
|
744
|
+
|
|
707
745
|
readonly Culture: StringHandle;
|
|
708
746
|
readonly Flags: AssemblyFlags;
|
|
709
747
|
readonly HashValue: BlobHandle;
|
|
@@ -724,6 +762,10 @@ export const AssemblyReference: {
|
|
|
724
762
|
export type AssemblyReference = AssemblyReference$instance;
|
|
725
763
|
|
|
726
764
|
export interface AssemblyReferenceHandle$instance {
|
|
765
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyReferenceHandle: never;
|
|
766
|
+
|
|
767
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
768
|
+
|
|
727
769
|
readonly IsNil: boolean;
|
|
728
770
|
Equals(obj: unknown): boolean;
|
|
729
771
|
Equals(other: AssemblyReferenceHandle): boolean;
|
|
@@ -747,6 +789,12 @@ export type AssemblyReferenceHandle = AssemblyReferenceHandle$instance & __Assem
|
|
|
747
789
|
|
|
748
790
|
|
|
749
791
|
export interface AssemblyReferenceHandleCollection$instance {
|
|
792
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyReferenceHandleCollection: never;
|
|
793
|
+
|
|
794
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
795
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
796
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
797
|
+
|
|
750
798
|
readonly Count: int;
|
|
751
799
|
GetEnumerator(): AssemblyReferenceHandleCollection_Enumerator;
|
|
752
800
|
}
|
|
@@ -767,6 +815,12 @@ export type AssemblyReferenceHandleCollection = AssemblyReferenceHandleCollectio
|
|
|
767
815
|
|
|
768
816
|
|
|
769
817
|
export interface AssemblyReferenceHandleCollection_Enumerator$instance {
|
|
818
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyReferenceHandleCollection_Enumerator: never;
|
|
819
|
+
|
|
820
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
821
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
822
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
823
|
+
|
|
770
824
|
readonly Current: AssemblyReferenceHandle;
|
|
771
825
|
MoveNext(): boolean;
|
|
772
826
|
Reset(): void;
|
|
@@ -787,6 +841,8 @@ export type AssemblyReferenceHandleCollection_Enumerator = AssemblyReferenceHand
|
|
|
787
841
|
|
|
788
842
|
|
|
789
843
|
export interface Blob$instance {
|
|
844
|
+
readonly __tsonic_type_System_Reflection_Metadata_Blob: never;
|
|
845
|
+
|
|
790
846
|
readonly IsDefault: boolean;
|
|
791
847
|
readonly Length: int;
|
|
792
848
|
GetBytes(): ArraySegment_1<System_Internal.Byte>;
|
|
@@ -801,6 +857,14 @@ export const Blob: {
|
|
|
801
857
|
export type Blob = Blob$instance;
|
|
802
858
|
|
|
803
859
|
export interface BlobBuilder_Blobs$instance {
|
|
860
|
+
readonly __tsonic_type_System_Reflection_Metadata_BlobBuilder_Blobs: never;
|
|
861
|
+
|
|
862
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
863
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
864
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
865
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
866
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
867
|
+
|
|
804
868
|
readonly Current: Blob;
|
|
805
869
|
GetEnumerator(): BlobBuilder_Blobs;
|
|
806
870
|
MoveNext(): boolean;
|
|
@@ -825,6 +889,10 @@ export type BlobBuilder_Blobs = BlobBuilder_Blobs$instance & __BlobBuilder_Blobs
|
|
|
825
889
|
|
|
826
890
|
|
|
827
891
|
export interface BlobContentId$instance {
|
|
892
|
+
readonly __tsonic_type_System_Reflection_Metadata_BlobContentId: never;
|
|
893
|
+
|
|
894
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
895
|
+
|
|
828
896
|
readonly Guid: Guid;
|
|
829
897
|
readonly IsDefault: boolean;
|
|
830
898
|
readonly Stamp: uint;
|
|
@@ -855,6 +923,10 @@ export type BlobContentId = BlobContentId$instance & __BlobContentId$views;
|
|
|
855
923
|
|
|
856
924
|
|
|
857
925
|
export interface BlobHandle$instance {
|
|
926
|
+
readonly __tsonic_type_System_Reflection_Metadata_BlobHandle: never;
|
|
927
|
+
|
|
928
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
929
|
+
|
|
858
930
|
readonly IsNil: boolean;
|
|
859
931
|
Equals(obj: unknown): boolean;
|
|
860
932
|
Equals(other: BlobHandle): boolean;
|
|
@@ -878,6 +950,8 @@ export type BlobHandle = BlobHandle$instance & __BlobHandle$views;
|
|
|
878
950
|
|
|
879
951
|
|
|
880
952
|
export interface BlobReader$instance {
|
|
953
|
+
readonly __tsonic_type_System_Reflection_Metadata_BlobReader: never;
|
|
954
|
+
|
|
881
955
|
readonly CurrentPointer: ptr<byte>;
|
|
882
956
|
readonly Length: int;
|
|
883
957
|
Offset: int;
|
|
@@ -927,6 +1001,8 @@ export const BlobReader: {
|
|
|
927
1001
|
export type BlobReader = BlobReader$instance;
|
|
928
1002
|
|
|
929
1003
|
export interface BlobWriter$instance {
|
|
1004
|
+
readonly __tsonic_type_System_Reflection_Metadata_BlobWriter: never;
|
|
1005
|
+
|
|
930
1006
|
readonly Blob: Blob;
|
|
931
1007
|
readonly Length: int;
|
|
932
1008
|
Offset: int;
|
|
@@ -988,6 +1064,8 @@ export const BlobWriter: {
|
|
|
988
1064
|
export type BlobWriter = BlobWriter$instance;
|
|
989
1065
|
|
|
990
1066
|
export interface Constant$instance {
|
|
1067
|
+
readonly __tsonic_type_System_Reflection_Metadata_Constant: never;
|
|
1068
|
+
|
|
991
1069
|
readonly Parent: EntityHandle;
|
|
992
1070
|
readonly TypeCode: ConstantTypeCode;
|
|
993
1071
|
readonly Value: BlobHandle;
|
|
@@ -1002,6 +1080,10 @@ export const Constant: {
|
|
|
1002
1080
|
export type Constant = Constant$instance;
|
|
1003
1081
|
|
|
1004
1082
|
export interface ConstantHandle$instance {
|
|
1083
|
+
readonly __tsonic_type_System_Reflection_Metadata_ConstantHandle: never;
|
|
1084
|
+
|
|
1085
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1086
|
+
|
|
1005
1087
|
readonly IsNil: boolean;
|
|
1006
1088
|
Equals(obj: unknown): boolean;
|
|
1007
1089
|
Equals(other: ConstantHandle): boolean;
|
|
@@ -1025,6 +1107,8 @@ export type ConstantHandle = ConstantHandle$instance & __ConstantHandle$views;
|
|
|
1025
1107
|
|
|
1026
1108
|
|
|
1027
1109
|
export interface CustomAttribute$instance {
|
|
1110
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomAttribute: never;
|
|
1111
|
+
|
|
1028
1112
|
readonly Constructor: EntityHandle;
|
|
1029
1113
|
readonly Parent: EntityHandle;
|
|
1030
1114
|
readonly Value: BlobHandle;
|
|
@@ -1040,6 +1124,10 @@ export const CustomAttribute: {
|
|
|
1040
1124
|
export type CustomAttribute = CustomAttribute$instance;
|
|
1041
1125
|
|
|
1042
1126
|
export interface CustomAttributeHandle$instance {
|
|
1127
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomAttributeHandle: never;
|
|
1128
|
+
|
|
1129
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1130
|
+
|
|
1043
1131
|
readonly IsNil: boolean;
|
|
1044
1132
|
Equals(obj: unknown): boolean;
|
|
1045
1133
|
Equals(other: CustomAttributeHandle): boolean;
|
|
@@ -1063,6 +1151,12 @@ export type CustomAttributeHandle = CustomAttributeHandle$instance & __CustomAtt
|
|
|
1063
1151
|
|
|
1064
1152
|
|
|
1065
1153
|
export interface CustomAttributeHandleCollection$instance {
|
|
1154
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomAttributeHandleCollection: never;
|
|
1155
|
+
|
|
1156
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1157
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1158
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1159
|
+
|
|
1066
1160
|
readonly Count: int;
|
|
1067
1161
|
GetEnumerator(): CustomAttributeHandleCollection_Enumerator;
|
|
1068
1162
|
}
|
|
@@ -1083,6 +1177,12 @@ export type CustomAttributeHandleCollection = CustomAttributeHandleCollection$in
|
|
|
1083
1177
|
|
|
1084
1178
|
|
|
1085
1179
|
export interface CustomAttributeHandleCollection_Enumerator$instance {
|
|
1180
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomAttributeHandleCollection_Enumerator: never;
|
|
1181
|
+
|
|
1182
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1183
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1184
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1185
|
+
|
|
1086
1186
|
readonly Current: CustomAttributeHandle;
|
|
1087
1187
|
MoveNext(): boolean;
|
|
1088
1188
|
Reset(): void;
|
|
@@ -1103,6 +1203,8 @@ export type CustomAttributeHandleCollection_Enumerator = CustomAttributeHandleCo
|
|
|
1103
1203
|
|
|
1104
1204
|
|
|
1105
1205
|
export interface CustomAttributeNamedArgument_1$instance<TType> {
|
|
1206
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomAttributeNamedArgument_1: never;
|
|
1207
|
+
|
|
1106
1208
|
readonly Kind: CustomAttributeNamedArgumentKind;
|
|
1107
1209
|
readonly Name: string | undefined;
|
|
1108
1210
|
readonly Type: TType;
|
|
@@ -1118,6 +1220,8 @@ export const CustomAttributeNamedArgument_1: {
|
|
|
1118
1220
|
export type CustomAttributeNamedArgument_1<TType> = CustomAttributeNamedArgument_1$instance<TType>;
|
|
1119
1221
|
|
|
1120
1222
|
export interface CustomAttributeTypedArgument_1$instance<TType> {
|
|
1223
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomAttributeTypedArgument_1: never;
|
|
1224
|
+
|
|
1121
1225
|
readonly Type: TType;
|
|
1122
1226
|
readonly Value: unknown | undefined;
|
|
1123
1227
|
}
|
|
@@ -1131,6 +1235,8 @@ export const CustomAttributeTypedArgument_1: {
|
|
|
1131
1235
|
export type CustomAttributeTypedArgument_1<TType> = CustomAttributeTypedArgument_1$instance<TType>;
|
|
1132
1236
|
|
|
1133
1237
|
export interface CustomAttributeValue_1$instance<TType> {
|
|
1238
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomAttributeValue_1: never;
|
|
1239
|
+
|
|
1134
1240
|
readonly FixedArguments: ImmutableArray_1<CustomAttributeTypedArgument_1<TType>>;
|
|
1135
1241
|
readonly NamedArguments: ImmutableArray_1<CustomAttributeNamedArgument_1<TType>>;
|
|
1136
1242
|
}
|
|
@@ -1144,6 +1250,8 @@ export const CustomAttributeValue_1: {
|
|
|
1144
1250
|
export type CustomAttributeValue_1<TType> = CustomAttributeValue_1$instance<TType>;
|
|
1145
1251
|
|
|
1146
1252
|
export interface CustomDebugInformation$instance {
|
|
1253
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomDebugInformation: never;
|
|
1254
|
+
|
|
1147
1255
|
readonly Kind: GuidHandle;
|
|
1148
1256
|
readonly Parent: EntityHandle;
|
|
1149
1257
|
readonly Value: BlobHandle;
|
|
@@ -1158,6 +1266,10 @@ export const CustomDebugInformation: {
|
|
|
1158
1266
|
export type CustomDebugInformation = CustomDebugInformation$instance;
|
|
1159
1267
|
|
|
1160
1268
|
export interface CustomDebugInformationHandle$instance {
|
|
1269
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomDebugInformationHandle: never;
|
|
1270
|
+
|
|
1271
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1272
|
+
|
|
1161
1273
|
readonly IsNil: boolean;
|
|
1162
1274
|
Equals(obj: unknown): boolean;
|
|
1163
1275
|
Equals(other: CustomDebugInformationHandle): boolean;
|
|
@@ -1181,6 +1293,12 @@ export type CustomDebugInformationHandle = CustomDebugInformationHandle$instance
|
|
|
1181
1293
|
|
|
1182
1294
|
|
|
1183
1295
|
export interface CustomDebugInformationHandleCollection$instance {
|
|
1296
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomDebugInformationHandleCollection: never;
|
|
1297
|
+
|
|
1298
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1299
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1300
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1301
|
+
|
|
1184
1302
|
readonly Count: int;
|
|
1185
1303
|
GetEnumerator(): CustomDebugInformationHandleCollection_Enumerator;
|
|
1186
1304
|
}
|
|
@@ -1201,6 +1319,12 @@ export type CustomDebugInformationHandleCollection = CustomDebugInformationHandl
|
|
|
1201
1319
|
|
|
1202
1320
|
|
|
1203
1321
|
export interface CustomDebugInformationHandleCollection_Enumerator$instance {
|
|
1322
|
+
readonly __tsonic_type_System_Reflection_Metadata_CustomDebugInformationHandleCollection_Enumerator: never;
|
|
1323
|
+
|
|
1324
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1325
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1326
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1327
|
+
|
|
1204
1328
|
readonly Current: CustomDebugInformationHandle;
|
|
1205
1329
|
MoveNext(): boolean;
|
|
1206
1330
|
Reset(): void;
|
|
@@ -1221,6 +1345,8 @@ export type CustomDebugInformationHandleCollection_Enumerator = CustomDebugInfor
|
|
|
1221
1345
|
|
|
1222
1346
|
|
|
1223
1347
|
export interface DeclarativeSecurityAttribute$instance {
|
|
1348
|
+
readonly __tsonic_type_System_Reflection_Metadata_DeclarativeSecurityAttribute: never;
|
|
1349
|
+
|
|
1224
1350
|
readonly Action: DeclarativeSecurityAction;
|
|
1225
1351
|
readonly Parent: EntityHandle;
|
|
1226
1352
|
readonly PermissionSet: BlobHandle;
|
|
@@ -1235,6 +1361,10 @@ export const DeclarativeSecurityAttribute: {
|
|
|
1235
1361
|
export type DeclarativeSecurityAttribute = DeclarativeSecurityAttribute$instance;
|
|
1236
1362
|
|
|
1237
1363
|
export interface DeclarativeSecurityAttributeHandle$instance {
|
|
1364
|
+
readonly __tsonic_type_System_Reflection_Metadata_DeclarativeSecurityAttributeHandle: never;
|
|
1365
|
+
|
|
1366
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1367
|
+
|
|
1238
1368
|
readonly IsNil: boolean;
|
|
1239
1369
|
Equals(obj: unknown): boolean;
|
|
1240
1370
|
Equals(other: DeclarativeSecurityAttributeHandle): boolean;
|
|
@@ -1258,6 +1388,12 @@ export type DeclarativeSecurityAttributeHandle = DeclarativeSecurityAttributeHan
|
|
|
1258
1388
|
|
|
1259
1389
|
|
|
1260
1390
|
export interface DeclarativeSecurityAttributeHandleCollection$instance {
|
|
1391
|
+
readonly __tsonic_type_System_Reflection_Metadata_DeclarativeSecurityAttributeHandleCollection: never;
|
|
1392
|
+
|
|
1393
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1394
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1395
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1396
|
+
|
|
1261
1397
|
readonly Count: int;
|
|
1262
1398
|
GetEnumerator(): DeclarativeSecurityAttributeHandleCollection_Enumerator;
|
|
1263
1399
|
}
|
|
@@ -1278,6 +1414,12 @@ export type DeclarativeSecurityAttributeHandleCollection = DeclarativeSecurityAt
|
|
|
1278
1414
|
|
|
1279
1415
|
|
|
1280
1416
|
export interface DeclarativeSecurityAttributeHandleCollection_Enumerator$instance {
|
|
1417
|
+
readonly __tsonic_type_System_Reflection_Metadata_DeclarativeSecurityAttributeHandleCollection_Enumerator: never;
|
|
1418
|
+
|
|
1419
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1420
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1421
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1422
|
+
|
|
1281
1423
|
readonly Current: DeclarativeSecurityAttributeHandle;
|
|
1282
1424
|
MoveNext(): boolean;
|
|
1283
1425
|
Reset(): void;
|
|
@@ -1298,6 +1440,8 @@ export type DeclarativeSecurityAttributeHandleCollection_Enumerator = Declarativ
|
|
|
1298
1440
|
|
|
1299
1441
|
|
|
1300
1442
|
export interface Document$instance {
|
|
1443
|
+
readonly __tsonic_type_System_Reflection_Metadata_Document: never;
|
|
1444
|
+
|
|
1301
1445
|
readonly Hash: BlobHandle;
|
|
1302
1446
|
readonly HashAlgorithm: GuidHandle;
|
|
1303
1447
|
readonly Language: GuidHandle;
|
|
@@ -1313,6 +1457,10 @@ export const Document: {
|
|
|
1313
1457
|
export type Document = Document$instance;
|
|
1314
1458
|
|
|
1315
1459
|
export interface DocumentHandle$instance {
|
|
1460
|
+
readonly __tsonic_type_System_Reflection_Metadata_DocumentHandle: never;
|
|
1461
|
+
|
|
1462
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1463
|
+
|
|
1316
1464
|
readonly IsNil: boolean;
|
|
1317
1465
|
Equals(obj: unknown): boolean;
|
|
1318
1466
|
Equals(other: DocumentHandle): boolean;
|
|
@@ -1336,6 +1484,12 @@ export type DocumentHandle = DocumentHandle$instance & __DocumentHandle$views;
|
|
|
1336
1484
|
|
|
1337
1485
|
|
|
1338
1486
|
export interface DocumentHandleCollection$instance {
|
|
1487
|
+
readonly __tsonic_type_System_Reflection_Metadata_DocumentHandleCollection: never;
|
|
1488
|
+
|
|
1489
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1490
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1491
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1492
|
+
|
|
1339
1493
|
readonly Count: int;
|
|
1340
1494
|
GetEnumerator(): DocumentHandleCollection_Enumerator;
|
|
1341
1495
|
}
|
|
@@ -1356,6 +1510,12 @@ export type DocumentHandleCollection = DocumentHandleCollection$instance & __Doc
|
|
|
1356
1510
|
|
|
1357
1511
|
|
|
1358
1512
|
export interface DocumentHandleCollection_Enumerator$instance {
|
|
1513
|
+
readonly __tsonic_type_System_Reflection_Metadata_DocumentHandleCollection_Enumerator: never;
|
|
1514
|
+
|
|
1515
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1516
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1517
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1518
|
+
|
|
1359
1519
|
readonly Current: DocumentHandle;
|
|
1360
1520
|
MoveNext(): boolean;
|
|
1361
1521
|
Reset(): void;
|
|
@@ -1376,6 +1536,10 @@ export type DocumentHandleCollection_Enumerator = DocumentHandleCollection_Enume
|
|
|
1376
1536
|
|
|
1377
1537
|
|
|
1378
1538
|
export interface DocumentNameBlobHandle$instance {
|
|
1539
|
+
readonly __tsonic_type_System_Reflection_Metadata_DocumentNameBlobHandle: never;
|
|
1540
|
+
|
|
1541
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1542
|
+
|
|
1379
1543
|
readonly IsNil: boolean;
|
|
1380
1544
|
Equals(obj: unknown): boolean;
|
|
1381
1545
|
Equals(other: DocumentNameBlobHandle): boolean;
|
|
@@ -1399,6 +1563,10 @@ export type DocumentNameBlobHandle = DocumentNameBlobHandle$instance & __Documen
|
|
|
1399
1563
|
|
|
1400
1564
|
|
|
1401
1565
|
export interface EntityHandle$instance {
|
|
1566
|
+
readonly __tsonic_type_System_Reflection_Metadata_EntityHandle: never;
|
|
1567
|
+
|
|
1568
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1569
|
+
|
|
1402
1570
|
readonly IsNil: boolean;
|
|
1403
1571
|
readonly Kind: HandleKind;
|
|
1404
1572
|
Equals(obj: unknown): boolean;
|
|
@@ -1425,6 +1593,8 @@ export type EntityHandle = EntityHandle$instance & __EntityHandle$views;
|
|
|
1425
1593
|
|
|
1426
1594
|
|
|
1427
1595
|
export interface EventAccessors$instance {
|
|
1596
|
+
readonly __tsonic_type_System_Reflection_Metadata_EventAccessors: never;
|
|
1597
|
+
|
|
1428
1598
|
readonly Adder: MethodDefinitionHandle;
|
|
1429
1599
|
readonly Others: ImmutableArray_1<MethodDefinitionHandle>;
|
|
1430
1600
|
readonly Raiser: MethodDefinitionHandle;
|
|
@@ -1440,6 +1610,8 @@ export const EventAccessors: {
|
|
|
1440
1610
|
export type EventAccessors = EventAccessors$instance;
|
|
1441
1611
|
|
|
1442
1612
|
export interface EventDefinition$instance {
|
|
1613
|
+
readonly __tsonic_type_System_Reflection_Metadata_EventDefinition: never;
|
|
1614
|
+
|
|
1443
1615
|
readonly Attributes: EventAttributes;
|
|
1444
1616
|
readonly Name: StringHandle;
|
|
1445
1617
|
readonly Type: EntityHandle;
|
|
@@ -1457,6 +1629,10 @@ export const EventDefinition: {
|
|
|
1457
1629
|
export type EventDefinition = EventDefinition$instance;
|
|
1458
1630
|
|
|
1459
1631
|
export interface EventDefinitionHandle$instance {
|
|
1632
|
+
readonly __tsonic_type_System_Reflection_Metadata_EventDefinitionHandle: never;
|
|
1633
|
+
|
|
1634
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1635
|
+
|
|
1460
1636
|
readonly IsNil: boolean;
|
|
1461
1637
|
Equals(obj: unknown): boolean;
|
|
1462
1638
|
Equals(other: EventDefinitionHandle): boolean;
|
|
@@ -1480,6 +1656,12 @@ export type EventDefinitionHandle = EventDefinitionHandle$instance & __EventDefi
|
|
|
1480
1656
|
|
|
1481
1657
|
|
|
1482
1658
|
export interface EventDefinitionHandleCollection$instance {
|
|
1659
|
+
readonly __tsonic_type_System_Reflection_Metadata_EventDefinitionHandleCollection: never;
|
|
1660
|
+
|
|
1661
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1662
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1663
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1664
|
+
|
|
1483
1665
|
readonly Count: int;
|
|
1484
1666
|
GetEnumerator(): EventDefinitionHandleCollection_Enumerator;
|
|
1485
1667
|
}
|
|
@@ -1500,6 +1682,12 @@ export type EventDefinitionHandleCollection = EventDefinitionHandleCollection$in
|
|
|
1500
1682
|
|
|
1501
1683
|
|
|
1502
1684
|
export interface EventDefinitionHandleCollection_Enumerator$instance {
|
|
1685
|
+
readonly __tsonic_type_System_Reflection_Metadata_EventDefinitionHandleCollection_Enumerator: never;
|
|
1686
|
+
|
|
1687
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1688
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1689
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1690
|
+
|
|
1503
1691
|
readonly Current: EventDefinitionHandle;
|
|
1504
1692
|
MoveNext(): boolean;
|
|
1505
1693
|
Reset(): void;
|
|
@@ -1520,6 +1708,8 @@ export type EventDefinitionHandleCollection_Enumerator = EventDefinitionHandleCo
|
|
|
1520
1708
|
|
|
1521
1709
|
|
|
1522
1710
|
export interface ExceptionRegion$instance {
|
|
1711
|
+
readonly __tsonic_type_System_Reflection_Metadata_ExceptionRegion: never;
|
|
1712
|
+
|
|
1523
1713
|
readonly CatchType: EntityHandle;
|
|
1524
1714
|
readonly FilterOffset: int;
|
|
1525
1715
|
readonly HandlerLength: int;
|
|
@@ -1538,6 +1728,8 @@ export const ExceptionRegion: {
|
|
|
1538
1728
|
export type ExceptionRegion = ExceptionRegion$instance;
|
|
1539
1729
|
|
|
1540
1730
|
export interface ExportedType$instance {
|
|
1731
|
+
readonly __tsonic_type_System_Reflection_Metadata_ExportedType: never;
|
|
1732
|
+
|
|
1541
1733
|
readonly Attributes: TypeAttributes;
|
|
1542
1734
|
readonly Implementation: EntityHandle;
|
|
1543
1735
|
readonly IsForwarder: boolean;
|
|
@@ -1556,6 +1748,10 @@ export const ExportedType: {
|
|
|
1556
1748
|
export type ExportedType = ExportedType$instance;
|
|
1557
1749
|
|
|
1558
1750
|
export interface ExportedTypeHandle$instance {
|
|
1751
|
+
readonly __tsonic_type_System_Reflection_Metadata_ExportedTypeHandle: never;
|
|
1752
|
+
|
|
1753
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1754
|
+
|
|
1559
1755
|
readonly IsNil: boolean;
|
|
1560
1756
|
Equals(obj: unknown): boolean;
|
|
1561
1757
|
Equals(other: ExportedTypeHandle): boolean;
|
|
@@ -1579,6 +1775,12 @@ export type ExportedTypeHandle = ExportedTypeHandle$instance & __ExportedTypeHan
|
|
|
1579
1775
|
|
|
1580
1776
|
|
|
1581
1777
|
export interface ExportedTypeHandleCollection$instance {
|
|
1778
|
+
readonly __tsonic_type_System_Reflection_Metadata_ExportedTypeHandleCollection: never;
|
|
1779
|
+
|
|
1780
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1781
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1782
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1783
|
+
|
|
1582
1784
|
readonly Count: int;
|
|
1583
1785
|
GetEnumerator(): ExportedTypeHandleCollection_Enumerator;
|
|
1584
1786
|
}
|
|
@@ -1599,6 +1801,12 @@ export type ExportedTypeHandleCollection = ExportedTypeHandleCollection$instance
|
|
|
1599
1801
|
|
|
1600
1802
|
|
|
1601
1803
|
export interface ExportedTypeHandleCollection_Enumerator$instance {
|
|
1804
|
+
readonly __tsonic_type_System_Reflection_Metadata_ExportedTypeHandleCollection_Enumerator: never;
|
|
1805
|
+
|
|
1806
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1807
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1808
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1809
|
+
|
|
1602
1810
|
readonly Current: ExportedTypeHandle;
|
|
1603
1811
|
MoveNext(): boolean;
|
|
1604
1812
|
Reset(): void;
|
|
@@ -1619,6 +1827,8 @@ export type ExportedTypeHandleCollection_Enumerator = ExportedTypeHandleCollecti
|
|
|
1619
1827
|
|
|
1620
1828
|
|
|
1621
1829
|
export interface FieldDefinition$instance {
|
|
1830
|
+
readonly __tsonic_type_System_Reflection_Metadata_FieldDefinition: never;
|
|
1831
|
+
|
|
1622
1832
|
readonly Attributes: FieldAttributes;
|
|
1623
1833
|
readonly Name: StringHandle;
|
|
1624
1834
|
readonly Signature: BlobHandle;
|
|
@@ -1640,6 +1850,10 @@ export const FieldDefinition: {
|
|
|
1640
1850
|
export type FieldDefinition = FieldDefinition$instance;
|
|
1641
1851
|
|
|
1642
1852
|
export interface FieldDefinitionHandle$instance {
|
|
1853
|
+
readonly __tsonic_type_System_Reflection_Metadata_FieldDefinitionHandle: never;
|
|
1854
|
+
|
|
1855
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1856
|
+
|
|
1643
1857
|
readonly IsNil: boolean;
|
|
1644
1858
|
Equals(obj: unknown): boolean;
|
|
1645
1859
|
Equals(other: FieldDefinitionHandle): boolean;
|
|
@@ -1663,6 +1877,12 @@ export type FieldDefinitionHandle = FieldDefinitionHandle$instance & __FieldDefi
|
|
|
1663
1877
|
|
|
1664
1878
|
|
|
1665
1879
|
export interface FieldDefinitionHandleCollection$instance {
|
|
1880
|
+
readonly __tsonic_type_System_Reflection_Metadata_FieldDefinitionHandleCollection: never;
|
|
1881
|
+
|
|
1882
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1883
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1884
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1885
|
+
|
|
1666
1886
|
readonly Count: int;
|
|
1667
1887
|
GetEnumerator(): FieldDefinitionHandleCollection_Enumerator;
|
|
1668
1888
|
}
|
|
@@ -1683,6 +1903,12 @@ export type FieldDefinitionHandleCollection = FieldDefinitionHandleCollection$in
|
|
|
1683
1903
|
|
|
1684
1904
|
|
|
1685
1905
|
export interface FieldDefinitionHandleCollection_Enumerator$instance {
|
|
1906
|
+
readonly __tsonic_type_System_Reflection_Metadata_FieldDefinitionHandleCollection_Enumerator: never;
|
|
1907
|
+
|
|
1908
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1909
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1910
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1911
|
+
|
|
1686
1912
|
readonly Current: FieldDefinitionHandle;
|
|
1687
1913
|
MoveNext(): boolean;
|
|
1688
1914
|
Reset(): void;
|
|
@@ -1703,6 +1929,8 @@ export type FieldDefinitionHandleCollection_Enumerator = FieldDefinitionHandleCo
|
|
|
1703
1929
|
|
|
1704
1930
|
|
|
1705
1931
|
export interface GenericParameter$instance {
|
|
1932
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameter: never;
|
|
1933
|
+
|
|
1706
1934
|
readonly Attributes: GenericParameterAttributes;
|
|
1707
1935
|
readonly Index: int;
|
|
1708
1936
|
readonly Name: StringHandle;
|
|
@@ -1720,6 +1948,8 @@ export const GenericParameter: {
|
|
|
1720
1948
|
export type GenericParameter = GenericParameter$instance;
|
|
1721
1949
|
|
|
1722
1950
|
export interface GenericParameterConstraint$instance {
|
|
1951
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameterConstraint: never;
|
|
1952
|
+
|
|
1723
1953
|
readonly Parameter: GenericParameterHandle;
|
|
1724
1954
|
readonly Type: EntityHandle;
|
|
1725
1955
|
GetCustomAttributes(): CustomAttributeHandleCollection;
|
|
@@ -1734,6 +1964,10 @@ export const GenericParameterConstraint: {
|
|
|
1734
1964
|
export type GenericParameterConstraint = GenericParameterConstraint$instance;
|
|
1735
1965
|
|
|
1736
1966
|
export interface GenericParameterConstraintHandle$instance {
|
|
1967
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameterConstraintHandle: never;
|
|
1968
|
+
|
|
1969
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1970
|
+
|
|
1737
1971
|
readonly IsNil: boolean;
|
|
1738
1972
|
Equals(obj: unknown): boolean;
|
|
1739
1973
|
Equals(other: GenericParameterConstraintHandle): boolean;
|
|
@@ -1757,6 +1991,13 @@ export type GenericParameterConstraintHandle = GenericParameterConstraintHandle$
|
|
|
1757
1991
|
|
|
1758
1992
|
|
|
1759
1993
|
export interface GenericParameterConstraintHandleCollection$instance {
|
|
1994
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameterConstraintHandleCollection: never;
|
|
1995
|
+
|
|
1996
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1997
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1998
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1999
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2000
|
+
|
|
1760
2001
|
readonly Count: int;
|
|
1761
2002
|
readonly [index: number]: GenericParameterConstraintHandle;
|
|
1762
2003
|
GetEnumerator(): GenericParameterConstraintHandleCollection_Enumerator;
|
|
@@ -1778,6 +2019,12 @@ export type GenericParameterConstraintHandleCollection = GenericParameterConstra
|
|
|
1778
2019
|
|
|
1779
2020
|
|
|
1780
2021
|
export interface GenericParameterConstraintHandleCollection_Enumerator$instance {
|
|
2022
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameterConstraintHandleCollection_Enumerator: never;
|
|
2023
|
+
|
|
2024
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2025
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2026
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2027
|
+
|
|
1781
2028
|
readonly Current: GenericParameterConstraintHandle;
|
|
1782
2029
|
MoveNext(): boolean;
|
|
1783
2030
|
Reset(): void;
|
|
@@ -1798,6 +2045,10 @@ export type GenericParameterConstraintHandleCollection_Enumerator = GenericParam
|
|
|
1798
2045
|
|
|
1799
2046
|
|
|
1800
2047
|
export interface GenericParameterHandle$instance {
|
|
2048
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameterHandle: never;
|
|
2049
|
+
|
|
2050
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2051
|
+
|
|
1801
2052
|
readonly IsNil: boolean;
|
|
1802
2053
|
Equals(obj: unknown): boolean;
|
|
1803
2054
|
Equals(other: GenericParameterHandle): boolean;
|
|
@@ -1821,6 +2072,13 @@ export type GenericParameterHandle = GenericParameterHandle$instance & __Generic
|
|
|
1821
2072
|
|
|
1822
2073
|
|
|
1823
2074
|
export interface GenericParameterHandleCollection$instance {
|
|
2075
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameterHandleCollection: never;
|
|
2076
|
+
|
|
2077
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2078
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2079
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
2080
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2081
|
+
|
|
1824
2082
|
readonly Count: int;
|
|
1825
2083
|
readonly [index: number]: GenericParameterHandle;
|
|
1826
2084
|
GetEnumerator(): GenericParameterHandleCollection_Enumerator;
|
|
@@ -1842,6 +2100,12 @@ export type GenericParameterHandleCollection = GenericParameterHandleCollection$
|
|
|
1842
2100
|
|
|
1843
2101
|
|
|
1844
2102
|
export interface GenericParameterHandleCollection_Enumerator$instance {
|
|
2103
|
+
readonly __tsonic_type_System_Reflection_Metadata_GenericParameterHandleCollection_Enumerator: never;
|
|
2104
|
+
|
|
2105
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2106
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2107
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2108
|
+
|
|
1845
2109
|
readonly Current: GenericParameterHandle;
|
|
1846
2110
|
MoveNext(): boolean;
|
|
1847
2111
|
Reset(): void;
|
|
@@ -1862,6 +2126,10 @@ export type GenericParameterHandleCollection_Enumerator = GenericParameterHandle
|
|
|
1862
2126
|
|
|
1863
2127
|
|
|
1864
2128
|
export interface GuidHandle$instance {
|
|
2129
|
+
readonly __tsonic_type_System_Reflection_Metadata_GuidHandle: never;
|
|
2130
|
+
|
|
2131
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2132
|
+
|
|
1865
2133
|
readonly IsNil: boolean;
|
|
1866
2134
|
Equals(obj: unknown): boolean;
|
|
1867
2135
|
Equals(other: GuidHandle): boolean;
|
|
@@ -1885,6 +2153,10 @@ export type GuidHandle = GuidHandle$instance & __GuidHandle$views;
|
|
|
1885
2153
|
|
|
1886
2154
|
|
|
1887
2155
|
export interface Handle$instance {
|
|
2156
|
+
readonly __tsonic_type_System_Reflection_Metadata_Handle: never;
|
|
2157
|
+
|
|
2158
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2159
|
+
|
|
1888
2160
|
readonly IsNil: boolean;
|
|
1889
2161
|
readonly Kind: HandleKind;
|
|
1890
2162
|
Equals(obj: unknown): boolean;
|
|
@@ -1911,6 +2183,8 @@ export type Handle = Handle$instance & __Handle$views;
|
|
|
1911
2183
|
|
|
1912
2184
|
|
|
1913
2185
|
export interface ImportDefinition$instance {
|
|
2186
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImportDefinition: never;
|
|
2187
|
+
|
|
1914
2188
|
readonly Alias: BlobHandle;
|
|
1915
2189
|
readonly Kind: ImportDefinitionKind;
|
|
1916
2190
|
readonly TargetAssembly: AssemblyReferenceHandle;
|
|
@@ -1927,6 +2201,11 @@ export const ImportDefinition: {
|
|
|
1927
2201
|
export type ImportDefinition = ImportDefinition$instance;
|
|
1928
2202
|
|
|
1929
2203
|
export interface ImportDefinitionCollection$instance {
|
|
2204
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImportDefinitionCollection: never;
|
|
2205
|
+
|
|
2206
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2207
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2208
|
+
|
|
1930
2209
|
GetEnumerator(): ImportDefinitionCollection_Enumerator;
|
|
1931
2210
|
}
|
|
1932
2211
|
|
|
@@ -1945,6 +2224,12 @@ export type ImportDefinitionCollection = ImportDefinitionCollection$instance & _
|
|
|
1945
2224
|
|
|
1946
2225
|
|
|
1947
2226
|
export interface ImportDefinitionCollection_Enumerator$instance {
|
|
2227
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImportDefinitionCollection_Enumerator: never;
|
|
2228
|
+
|
|
2229
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2230
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2231
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2232
|
+
|
|
1948
2233
|
readonly Current: ImportDefinition;
|
|
1949
2234
|
MoveNext(): boolean;
|
|
1950
2235
|
Reset(): void;
|
|
@@ -1966,6 +2251,8 @@ export type ImportDefinitionCollection_Enumerator = ImportDefinitionCollection_E
|
|
|
1966
2251
|
|
|
1967
2252
|
|
|
1968
2253
|
export interface ImportScope$instance {
|
|
2254
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImportScope: never;
|
|
2255
|
+
|
|
1969
2256
|
readonly ImportsBlob: BlobHandle;
|
|
1970
2257
|
readonly Parent: ImportScopeHandle;
|
|
1971
2258
|
GetImports(): ImportDefinitionCollection;
|
|
@@ -1980,6 +2267,12 @@ export const ImportScope: {
|
|
|
1980
2267
|
export type ImportScope = ImportScope$instance;
|
|
1981
2268
|
|
|
1982
2269
|
export interface ImportScopeCollection$instance {
|
|
2270
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImportScopeCollection: never;
|
|
2271
|
+
|
|
2272
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2273
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2274
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2275
|
+
|
|
1983
2276
|
readonly Count: int;
|
|
1984
2277
|
GetEnumerator(): ImportScopeCollection_Enumerator;
|
|
1985
2278
|
}
|
|
@@ -2000,6 +2293,12 @@ export type ImportScopeCollection = ImportScopeCollection$instance & __ImportSco
|
|
|
2000
2293
|
|
|
2001
2294
|
|
|
2002
2295
|
export interface ImportScopeCollection_Enumerator$instance {
|
|
2296
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImportScopeCollection_Enumerator: never;
|
|
2297
|
+
|
|
2298
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2299
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2300
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2301
|
+
|
|
2003
2302
|
readonly Current: ImportScopeHandle;
|
|
2004
2303
|
MoveNext(): boolean;
|
|
2005
2304
|
Reset(): void;
|
|
@@ -2020,6 +2319,10 @@ export type ImportScopeCollection_Enumerator = ImportScopeCollection_Enumerator$
|
|
|
2020
2319
|
|
|
2021
2320
|
|
|
2022
2321
|
export interface ImportScopeHandle$instance {
|
|
2322
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImportScopeHandle: never;
|
|
2323
|
+
|
|
2324
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2325
|
+
|
|
2023
2326
|
readonly IsNil: boolean;
|
|
2024
2327
|
Equals(obj: unknown): boolean;
|
|
2025
2328
|
Equals(other: ImportScopeHandle): boolean;
|
|
@@ -2043,6 +2346,8 @@ export type ImportScopeHandle = ImportScopeHandle$instance & __ImportScopeHandle
|
|
|
2043
2346
|
|
|
2044
2347
|
|
|
2045
2348
|
export interface InterfaceImplementation$instance {
|
|
2349
|
+
readonly __tsonic_type_System_Reflection_Metadata_InterfaceImplementation: never;
|
|
2350
|
+
|
|
2046
2351
|
readonly Interface: EntityHandle;
|
|
2047
2352
|
GetCustomAttributes(): CustomAttributeHandleCollection;
|
|
2048
2353
|
}
|
|
@@ -2056,6 +2361,10 @@ export const InterfaceImplementation: {
|
|
|
2056
2361
|
export type InterfaceImplementation = InterfaceImplementation$instance;
|
|
2057
2362
|
|
|
2058
2363
|
export interface InterfaceImplementationHandle$instance {
|
|
2364
|
+
readonly __tsonic_type_System_Reflection_Metadata_InterfaceImplementationHandle: never;
|
|
2365
|
+
|
|
2366
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2367
|
+
|
|
2059
2368
|
readonly IsNil: boolean;
|
|
2060
2369
|
Equals(obj: unknown): boolean;
|
|
2061
2370
|
Equals(other: InterfaceImplementationHandle): boolean;
|
|
@@ -2079,6 +2388,12 @@ export type InterfaceImplementationHandle = InterfaceImplementationHandle$instan
|
|
|
2079
2388
|
|
|
2080
2389
|
|
|
2081
2390
|
export interface InterfaceImplementationHandleCollection$instance {
|
|
2391
|
+
readonly __tsonic_type_System_Reflection_Metadata_InterfaceImplementationHandleCollection: never;
|
|
2392
|
+
|
|
2393
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2394
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2395
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2396
|
+
|
|
2082
2397
|
readonly Count: int;
|
|
2083
2398
|
GetEnumerator(): InterfaceImplementationHandleCollection_Enumerator;
|
|
2084
2399
|
}
|
|
@@ -2099,6 +2414,12 @@ export type InterfaceImplementationHandleCollection = InterfaceImplementationHan
|
|
|
2099
2414
|
|
|
2100
2415
|
|
|
2101
2416
|
export interface InterfaceImplementationHandleCollection_Enumerator$instance {
|
|
2417
|
+
readonly __tsonic_type_System_Reflection_Metadata_InterfaceImplementationHandleCollection_Enumerator: never;
|
|
2418
|
+
|
|
2419
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2420
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2421
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2422
|
+
|
|
2102
2423
|
readonly Current: InterfaceImplementationHandle;
|
|
2103
2424
|
MoveNext(): boolean;
|
|
2104
2425
|
Reset(): void;
|
|
@@ -2119,6 +2440,8 @@ export type InterfaceImplementationHandleCollection_Enumerator = InterfaceImplem
|
|
|
2119
2440
|
|
|
2120
2441
|
|
|
2121
2442
|
export interface LocalConstant$instance {
|
|
2443
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalConstant: never;
|
|
2444
|
+
|
|
2122
2445
|
readonly Name: StringHandle;
|
|
2123
2446
|
readonly Signature: BlobHandle;
|
|
2124
2447
|
}
|
|
@@ -2132,6 +2455,10 @@ export const LocalConstant: {
|
|
|
2132
2455
|
export type LocalConstant = LocalConstant$instance;
|
|
2133
2456
|
|
|
2134
2457
|
export interface LocalConstantHandle$instance {
|
|
2458
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalConstantHandle: never;
|
|
2459
|
+
|
|
2460
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2461
|
+
|
|
2135
2462
|
readonly IsNil: boolean;
|
|
2136
2463
|
Equals(obj: unknown): boolean;
|
|
2137
2464
|
Equals(other: LocalConstantHandle): boolean;
|
|
@@ -2155,6 +2482,12 @@ export type LocalConstantHandle = LocalConstantHandle$instance & __LocalConstant
|
|
|
2155
2482
|
|
|
2156
2483
|
|
|
2157
2484
|
export interface LocalConstantHandleCollection$instance {
|
|
2485
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalConstantHandleCollection: never;
|
|
2486
|
+
|
|
2487
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2488
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2489
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2490
|
+
|
|
2158
2491
|
readonly Count: int;
|
|
2159
2492
|
GetEnumerator(): LocalConstantHandleCollection_Enumerator;
|
|
2160
2493
|
}
|
|
@@ -2175,6 +2508,12 @@ export type LocalConstantHandleCollection = LocalConstantHandleCollection$instan
|
|
|
2175
2508
|
|
|
2176
2509
|
|
|
2177
2510
|
export interface LocalConstantHandleCollection_Enumerator$instance {
|
|
2511
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalConstantHandleCollection_Enumerator: never;
|
|
2512
|
+
|
|
2513
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2514
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2515
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2516
|
+
|
|
2178
2517
|
readonly Current: LocalConstantHandle;
|
|
2179
2518
|
MoveNext(): boolean;
|
|
2180
2519
|
Reset(): void;
|
|
@@ -2195,6 +2534,8 @@ export type LocalConstantHandleCollection_Enumerator = LocalConstantHandleCollec
|
|
|
2195
2534
|
|
|
2196
2535
|
|
|
2197
2536
|
export interface LocalScope$instance {
|
|
2537
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalScope: never;
|
|
2538
|
+
|
|
2198
2539
|
readonly EndOffset: int;
|
|
2199
2540
|
readonly ImportScope: ImportScopeHandle;
|
|
2200
2541
|
readonly Length: int;
|
|
@@ -2214,6 +2555,10 @@ export const LocalScope: {
|
|
|
2214
2555
|
export type LocalScope = LocalScope$instance;
|
|
2215
2556
|
|
|
2216
2557
|
export interface LocalScopeHandle$instance {
|
|
2558
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalScopeHandle: never;
|
|
2559
|
+
|
|
2560
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2561
|
+
|
|
2217
2562
|
readonly IsNil: boolean;
|
|
2218
2563
|
Equals(obj: unknown): boolean;
|
|
2219
2564
|
Equals(other: LocalScopeHandle): boolean;
|
|
@@ -2237,6 +2582,12 @@ export type LocalScopeHandle = LocalScopeHandle$instance & __LocalScopeHandle$vi
|
|
|
2237
2582
|
|
|
2238
2583
|
|
|
2239
2584
|
export interface LocalScopeHandleCollection$instance {
|
|
2585
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalScopeHandleCollection: never;
|
|
2586
|
+
|
|
2587
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2588
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2589
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2590
|
+
|
|
2240
2591
|
readonly Count: int;
|
|
2241
2592
|
GetEnumerator(): LocalScopeHandleCollection_Enumerator;
|
|
2242
2593
|
}
|
|
@@ -2257,6 +2608,12 @@ export type LocalScopeHandleCollection = LocalScopeHandleCollection$instance & _
|
|
|
2257
2608
|
|
|
2258
2609
|
|
|
2259
2610
|
export interface LocalScopeHandleCollection_ChildrenEnumerator$instance {
|
|
2611
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalScopeHandleCollection_ChildrenEnumerator: never;
|
|
2612
|
+
|
|
2613
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2614
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2615
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2616
|
+
|
|
2260
2617
|
readonly Current: LocalScopeHandle;
|
|
2261
2618
|
MoveNext(): boolean;
|
|
2262
2619
|
Reset(): void;
|
|
@@ -2277,6 +2634,12 @@ export type LocalScopeHandleCollection_ChildrenEnumerator = LocalScopeHandleColl
|
|
|
2277
2634
|
|
|
2278
2635
|
|
|
2279
2636
|
export interface LocalScopeHandleCollection_Enumerator$instance {
|
|
2637
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalScopeHandleCollection_Enumerator: never;
|
|
2638
|
+
|
|
2639
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2640
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2641
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2642
|
+
|
|
2280
2643
|
readonly Current: LocalScopeHandle;
|
|
2281
2644
|
MoveNext(): boolean;
|
|
2282
2645
|
Reset(): void;
|
|
@@ -2297,6 +2660,8 @@ export type LocalScopeHandleCollection_Enumerator = LocalScopeHandleCollection_E
|
|
|
2297
2660
|
|
|
2298
2661
|
|
|
2299
2662
|
export interface LocalVariable$instance {
|
|
2663
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalVariable: never;
|
|
2664
|
+
|
|
2300
2665
|
readonly Attributes: LocalVariableAttributes;
|
|
2301
2666
|
readonly Index: int;
|
|
2302
2667
|
readonly Name: StringHandle;
|
|
@@ -2311,6 +2676,10 @@ export const LocalVariable: {
|
|
|
2311
2676
|
export type LocalVariable = LocalVariable$instance;
|
|
2312
2677
|
|
|
2313
2678
|
export interface LocalVariableHandle$instance {
|
|
2679
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalVariableHandle: never;
|
|
2680
|
+
|
|
2681
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2682
|
+
|
|
2314
2683
|
readonly IsNil: boolean;
|
|
2315
2684
|
Equals(obj: unknown): boolean;
|
|
2316
2685
|
Equals(other: LocalVariableHandle): boolean;
|
|
@@ -2334,6 +2703,12 @@ export type LocalVariableHandle = LocalVariableHandle$instance & __LocalVariable
|
|
|
2334
2703
|
|
|
2335
2704
|
|
|
2336
2705
|
export interface LocalVariableHandleCollection$instance {
|
|
2706
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalVariableHandleCollection: never;
|
|
2707
|
+
|
|
2708
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2709
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2710
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2711
|
+
|
|
2337
2712
|
readonly Count: int;
|
|
2338
2713
|
GetEnumerator(): LocalVariableHandleCollection_Enumerator;
|
|
2339
2714
|
}
|
|
@@ -2354,6 +2729,12 @@ export type LocalVariableHandleCollection = LocalVariableHandleCollection$instan
|
|
|
2354
2729
|
|
|
2355
2730
|
|
|
2356
2731
|
export interface LocalVariableHandleCollection_Enumerator$instance {
|
|
2732
|
+
readonly __tsonic_type_System_Reflection_Metadata_LocalVariableHandleCollection_Enumerator: never;
|
|
2733
|
+
|
|
2734
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2735
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2736
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2737
|
+
|
|
2357
2738
|
readonly Current: LocalVariableHandle;
|
|
2358
2739
|
MoveNext(): boolean;
|
|
2359
2740
|
Reset(): void;
|
|
@@ -2374,6 +2755,8 @@ export type LocalVariableHandleCollection_Enumerator = LocalVariableHandleCollec
|
|
|
2374
2755
|
|
|
2375
2756
|
|
|
2376
2757
|
export interface ManifestResource$instance {
|
|
2758
|
+
readonly __tsonic_type_System_Reflection_Metadata_ManifestResource: never;
|
|
2759
|
+
|
|
2377
2760
|
readonly Attributes: ManifestResourceAttributes;
|
|
2378
2761
|
readonly Implementation: EntityHandle;
|
|
2379
2762
|
readonly Name: StringHandle;
|
|
@@ -2390,6 +2773,10 @@ export const ManifestResource: {
|
|
|
2390
2773
|
export type ManifestResource = ManifestResource$instance;
|
|
2391
2774
|
|
|
2392
2775
|
export interface ManifestResourceHandle$instance {
|
|
2776
|
+
readonly __tsonic_type_System_Reflection_Metadata_ManifestResourceHandle: never;
|
|
2777
|
+
|
|
2778
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2779
|
+
|
|
2393
2780
|
readonly IsNil: boolean;
|
|
2394
2781
|
Equals(obj: unknown): boolean;
|
|
2395
2782
|
Equals(other: ManifestResourceHandle): boolean;
|
|
@@ -2413,6 +2800,12 @@ export type ManifestResourceHandle = ManifestResourceHandle$instance & __Manifes
|
|
|
2413
2800
|
|
|
2414
2801
|
|
|
2415
2802
|
export interface ManifestResourceHandleCollection$instance {
|
|
2803
|
+
readonly __tsonic_type_System_Reflection_Metadata_ManifestResourceHandleCollection: never;
|
|
2804
|
+
|
|
2805
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2806
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2807
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2808
|
+
|
|
2416
2809
|
readonly Count: int;
|
|
2417
2810
|
GetEnumerator(): ManifestResourceHandleCollection_Enumerator;
|
|
2418
2811
|
}
|
|
@@ -2433,6 +2826,12 @@ export type ManifestResourceHandleCollection = ManifestResourceHandleCollection$
|
|
|
2433
2826
|
|
|
2434
2827
|
|
|
2435
2828
|
export interface ManifestResourceHandleCollection_Enumerator$instance {
|
|
2829
|
+
readonly __tsonic_type_System_Reflection_Metadata_ManifestResourceHandleCollection_Enumerator: never;
|
|
2830
|
+
|
|
2831
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2832
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2833
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2834
|
+
|
|
2436
2835
|
readonly Current: ManifestResourceHandle;
|
|
2437
2836
|
MoveNext(): boolean;
|
|
2438
2837
|
Reset(): void;
|
|
@@ -2453,6 +2852,8 @@ export type ManifestResourceHandleCollection_Enumerator = ManifestResourceHandle
|
|
|
2453
2852
|
|
|
2454
2853
|
|
|
2455
2854
|
export interface MemberReference$instance {
|
|
2855
|
+
readonly __tsonic_type_System_Reflection_Metadata_MemberReference: never;
|
|
2856
|
+
|
|
2456
2857
|
readonly Name: StringHandle;
|
|
2457
2858
|
readonly Parent: EntityHandle;
|
|
2458
2859
|
readonly Signature: BlobHandle;
|
|
@@ -2471,6 +2872,10 @@ export const MemberReference: {
|
|
|
2471
2872
|
export type MemberReference = MemberReference$instance;
|
|
2472
2873
|
|
|
2473
2874
|
export interface MemberReferenceHandle$instance {
|
|
2875
|
+
readonly __tsonic_type_System_Reflection_Metadata_MemberReferenceHandle: never;
|
|
2876
|
+
|
|
2877
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2878
|
+
|
|
2474
2879
|
readonly IsNil: boolean;
|
|
2475
2880
|
Equals(obj: unknown): boolean;
|
|
2476
2881
|
Equals(other: MemberReferenceHandle): boolean;
|
|
@@ -2494,6 +2899,12 @@ export type MemberReferenceHandle = MemberReferenceHandle$instance & __MemberRef
|
|
|
2494
2899
|
|
|
2495
2900
|
|
|
2496
2901
|
export interface MemberReferenceHandleCollection$instance {
|
|
2902
|
+
readonly __tsonic_type_System_Reflection_Metadata_MemberReferenceHandleCollection: never;
|
|
2903
|
+
|
|
2904
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2905
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2906
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2907
|
+
|
|
2497
2908
|
readonly Count: int;
|
|
2498
2909
|
GetEnumerator(): MemberReferenceHandleCollection_Enumerator;
|
|
2499
2910
|
}
|
|
@@ -2514,6 +2925,12 @@ export type MemberReferenceHandleCollection = MemberReferenceHandleCollection$in
|
|
|
2514
2925
|
|
|
2515
2926
|
|
|
2516
2927
|
export interface MemberReferenceHandleCollection_Enumerator$instance {
|
|
2928
|
+
readonly __tsonic_type_System_Reflection_Metadata_MemberReferenceHandleCollection_Enumerator: never;
|
|
2929
|
+
|
|
2930
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
2931
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
2932
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2933
|
+
|
|
2517
2934
|
readonly Current: MemberReferenceHandle;
|
|
2518
2935
|
MoveNext(): boolean;
|
|
2519
2936
|
Reset(): void;
|
|
@@ -2534,6 +2951,8 @@ export type MemberReferenceHandleCollection_Enumerator = MemberReferenceHandleCo
|
|
|
2534
2951
|
|
|
2535
2952
|
|
|
2536
2953
|
export interface MetadataStringComparer$instance {
|
|
2954
|
+
readonly __tsonic_type_System_Reflection_Metadata_MetadataStringComparer: never;
|
|
2955
|
+
|
|
2537
2956
|
Equals(handle: StringHandle, value: string): boolean;
|
|
2538
2957
|
Equals(handle: StringHandle, value: string, ignoreCase: boolean): boolean;
|
|
2539
2958
|
Equals(handle: NamespaceDefinitionHandle, value: string): boolean;
|
|
@@ -2553,6 +2972,8 @@ export const MetadataStringComparer: {
|
|
|
2553
2972
|
export type MetadataStringComparer = MetadataStringComparer$instance;
|
|
2554
2973
|
|
|
2555
2974
|
export interface MethodDebugInformation$instance {
|
|
2975
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDebugInformation: never;
|
|
2976
|
+
|
|
2556
2977
|
readonly Document: DocumentHandle;
|
|
2557
2978
|
readonly LocalSignature: StandaloneSignatureHandle;
|
|
2558
2979
|
readonly SequencePointsBlob: BlobHandle;
|
|
@@ -2569,6 +2990,10 @@ export const MethodDebugInformation: {
|
|
|
2569
2990
|
export type MethodDebugInformation = MethodDebugInformation$instance;
|
|
2570
2991
|
|
|
2571
2992
|
export interface MethodDebugInformationHandle$instance {
|
|
2993
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDebugInformationHandle: never;
|
|
2994
|
+
|
|
2995
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2996
|
+
|
|
2572
2997
|
readonly IsNil: boolean;
|
|
2573
2998
|
Equals(obj: unknown): boolean;
|
|
2574
2999
|
Equals(other: MethodDebugInformationHandle): boolean;
|
|
@@ -2593,6 +3018,12 @@ export type MethodDebugInformationHandle = MethodDebugInformationHandle$instance
|
|
|
2593
3018
|
|
|
2594
3019
|
|
|
2595
3020
|
export interface MethodDebugInformationHandleCollection$instance {
|
|
3021
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDebugInformationHandleCollection: never;
|
|
3022
|
+
|
|
3023
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
3024
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
3025
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
3026
|
+
|
|
2596
3027
|
readonly Count: int;
|
|
2597
3028
|
GetEnumerator(): MethodDebugInformationHandleCollection_Enumerator;
|
|
2598
3029
|
}
|
|
@@ -2613,6 +3044,12 @@ export type MethodDebugInformationHandleCollection = MethodDebugInformationHandl
|
|
|
2613
3044
|
|
|
2614
3045
|
|
|
2615
3046
|
export interface MethodDebugInformationHandleCollection_Enumerator$instance {
|
|
3047
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDebugInformationHandleCollection_Enumerator: never;
|
|
3048
|
+
|
|
3049
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3050
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3051
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
3052
|
+
|
|
2616
3053
|
readonly Current: MethodDebugInformationHandle;
|
|
2617
3054
|
MoveNext(): boolean;
|
|
2618
3055
|
Reset(): void;
|
|
@@ -2633,6 +3070,8 @@ export type MethodDebugInformationHandleCollection_Enumerator = MethodDebugInfor
|
|
|
2633
3070
|
|
|
2634
3071
|
|
|
2635
3072
|
export interface MethodDefinition$instance {
|
|
3073
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDefinition: never;
|
|
3074
|
+
|
|
2636
3075
|
readonly Attributes: MethodAttributes;
|
|
2637
3076
|
readonly ImplAttributes: MethodImplAttributes;
|
|
2638
3077
|
readonly Name: StringHandle;
|
|
@@ -2656,6 +3095,10 @@ export const MethodDefinition: {
|
|
|
2656
3095
|
export type MethodDefinition = MethodDefinition$instance;
|
|
2657
3096
|
|
|
2658
3097
|
export interface MethodDefinitionHandle$instance {
|
|
3098
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDefinitionHandle: never;
|
|
3099
|
+
|
|
3100
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3101
|
+
|
|
2659
3102
|
readonly IsNil: boolean;
|
|
2660
3103
|
Equals(obj: unknown): boolean;
|
|
2661
3104
|
Equals(other: MethodDefinitionHandle): boolean;
|
|
@@ -2680,6 +3123,12 @@ export type MethodDefinitionHandle = MethodDefinitionHandle$instance & __MethodD
|
|
|
2680
3123
|
|
|
2681
3124
|
|
|
2682
3125
|
export interface MethodDefinitionHandleCollection$instance {
|
|
3126
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDefinitionHandleCollection: never;
|
|
3127
|
+
|
|
3128
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
3129
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
3130
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
3131
|
+
|
|
2683
3132
|
readonly Count: int;
|
|
2684
3133
|
GetEnumerator(): MethodDefinitionHandleCollection_Enumerator;
|
|
2685
3134
|
}
|
|
@@ -2700,6 +3149,12 @@ export type MethodDefinitionHandleCollection = MethodDefinitionHandleCollection$
|
|
|
2700
3149
|
|
|
2701
3150
|
|
|
2702
3151
|
export interface MethodDefinitionHandleCollection_Enumerator$instance {
|
|
3152
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodDefinitionHandleCollection_Enumerator: never;
|
|
3153
|
+
|
|
3154
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3155
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3156
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
3157
|
+
|
|
2703
3158
|
readonly Current: MethodDefinitionHandle;
|
|
2704
3159
|
MoveNext(): boolean;
|
|
2705
3160
|
Reset(): void;
|
|
@@ -2720,6 +3175,8 @@ export type MethodDefinitionHandleCollection_Enumerator = MethodDefinitionHandle
|
|
|
2720
3175
|
|
|
2721
3176
|
|
|
2722
3177
|
export interface MethodImplementation$instance {
|
|
3178
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodImplementation: never;
|
|
3179
|
+
|
|
2723
3180
|
readonly MethodBody: EntityHandle;
|
|
2724
3181
|
readonly MethodDeclaration: EntityHandle;
|
|
2725
3182
|
readonly Type: TypeDefinitionHandle;
|
|
@@ -2735,6 +3192,10 @@ export const MethodImplementation: {
|
|
|
2735
3192
|
export type MethodImplementation = MethodImplementation$instance;
|
|
2736
3193
|
|
|
2737
3194
|
export interface MethodImplementationHandle$instance {
|
|
3195
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodImplementationHandle: never;
|
|
3196
|
+
|
|
3197
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3198
|
+
|
|
2738
3199
|
readonly IsNil: boolean;
|
|
2739
3200
|
Equals(obj: unknown): boolean;
|
|
2740
3201
|
Equals(other: MethodImplementationHandle): boolean;
|
|
@@ -2758,6 +3219,12 @@ export type MethodImplementationHandle = MethodImplementationHandle$instance & _
|
|
|
2758
3219
|
|
|
2759
3220
|
|
|
2760
3221
|
export interface MethodImplementationHandleCollection$instance {
|
|
3222
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodImplementationHandleCollection: never;
|
|
3223
|
+
|
|
3224
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
3225
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
3226
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
3227
|
+
|
|
2761
3228
|
readonly Count: int;
|
|
2762
3229
|
GetEnumerator(): MethodImplementationHandleCollection_Enumerator;
|
|
2763
3230
|
}
|
|
@@ -2778,6 +3245,12 @@ export type MethodImplementationHandleCollection = MethodImplementationHandleCol
|
|
|
2778
3245
|
|
|
2779
3246
|
|
|
2780
3247
|
export interface MethodImplementationHandleCollection_Enumerator$instance {
|
|
3248
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodImplementationHandleCollection_Enumerator: never;
|
|
3249
|
+
|
|
3250
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3251
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3252
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
3253
|
+
|
|
2781
3254
|
readonly Current: MethodImplementationHandle;
|
|
2782
3255
|
MoveNext(): boolean;
|
|
2783
3256
|
Reset(): void;
|
|
@@ -2798,6 +3271,8 @@ export type MethodImplementationHandleCollection_Enumerator = MethodImplementati
|
|
|
2798
3271
|
|
|
2799
3272
|
|
|
2800
3273
|
export interface MethodImport$instance {
|
|
3274
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodImport: never;
|
|
3275
|
+
|
|
2801
3276
|
readonly Attributes: MethodImportAttributes;
|
|
2802
3277
|
readonly Module: ModuleReferenceHandle;
|
|
2803
3278
|
readonly Name: StringHandle;
|
|
@@ -2812,6 +3287,8 @@ export const MethodImport: {
|
|
|
2812
3287
|
export type MethodImport = MethodImport$instance;
|
|
2813
3288
|
|
|
2814
3289
|
export interface MethodSignature_1$instance<TType> {
|
|
3290
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodSignature_1: never;
|
|
3291
|
+
|
|
2815
3292
|
readonly GenericParameterCount: int;
|
|
2816
3293
|
readonly Header: SignatureHeader;
|
|
2817
3294
|
readonly ParameterTypes: ImmutableArray_1<TType>;
|
|
@@ -2828,6 +3305,8 @@ export const MethodSignature_1: {
|
|
|
2828
3305
|
export type MethodSignature_1<TType> = MethodSignature_1$instance<TType>;
|
|
2829
3306
|
|
|
2830
3307
|
export interface MethodSpecification$instance {
|
|
3308
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodSpecification: never;
|
|
3309
|
+
|
|
2831
3310
|
readonly Method: EntityHandle;
|
|
2832
3311
|
readonly Signature: BlobHandle;
|
|
2833
3312
|
DecodeSignature<TType, TGenericContext>(provider: ISignatureTypeProvider_2<TType, TGenericContext>, genericContext: TGenericContext): ImmutableArray_1<TType>;
|
|
@@ -2843,6 +3322,10 @@ export const MethodSpecification: {
|
|
|
2843
3322
|
export type MethodSpecification = MethodSpecification$instance;
|
|
2844
3323
|
|
|
2845
3324
|
export interface MethodSpecificationHandle$instance {
|
|
3325
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodSpecificationHandle: never;
|
|
3326
|
+
|
|
3327
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3328
|
+
|
|
2846
3329
|
readonly IsNil: boolean;
|
|
2847
3330
|
Equals(obj: unknown): boolean;
|
|
2848
3331
|
Equals(other: MethodSpecificationHandle): boolean;
|
|
@@ -2866,6 +3349,8 @@ export type MethodSpecificationHandle = MethodSpecificationHandle$instance & __M
|
|
|
2866
3349
|
|
|
2867
3350
|
|
|
2868
3351
|
export interface ModuleDefinition$instance {
|
|
3352
|
+
readonly __tsonic_type_System_Reflection_Metadata_ModuleDefinition: never;
|
|
3353
|
+
|
|
2869
3354
|
readonly BaseGenerationId: GuidHandle;
|
|
2870
3355
|
readonly Generation: int;
|
|
2871
3356
|
readonly GenerationId: GuidHandle;
|
|
@@ -2883,6 +3368,10 @@ export const ModuleDefinition: {
|
|
|
2883
3368
|
export type ModuleDefinition = ModuleDefinition$instance;
|
|
2884
3369
|
|
|
2885
3370
|
export interface ModuleDefinitionHandle$instance {
|
|
3371
|
+
readonly __tsonic_type_System_Reflection_Metadata_ModuleDefinitionHandle: never;
|
|
3372
|
+
|
|
3373
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3374
|
+
|
|
2886
3375
|
readonly IsNil: boolean;
|
|
2887
3376
|
Equals(obj: unknown): boolean;
|
|
2888
3377
|
Equals(other: ModuleDefinitionHandle): boolean;
|
|
@@ -2906,6 +3395,8 @@ export type ModuleDefinitionHandle = ModuleDefinitionHandle$instance & __ModuleD
|
|
|
2906
3395
|
|
|
2907
3396
|
|
|
2908
3397
|
export interface ModuleReference$instance {
|
|
3398
|
+
readonly __tsonic_type_System_Reflection_Metadata_ModuleReference: never;
|
|
3399
|
+
|
|
2909
3400
|
readonly Name: StringHandle;
|
|
2910
3401
|
GetCustomAttributes(): CustomAttributeHandleCollection;
|
|
2911
3402
|
}
|
|
@@ -2919,6 +3410,10 @@ export const ModuleReference: {
|
|
|
2919
3410
|
export type ModuleReference = ModuleReference$instance;
|
|
2920
3411
|
|
|
2921
3412
|
export interface ModuleReferenceHandle$instance {
|
|
3413
|
+
readonly __tsonic_type_System_Reflection_Metadata_ModuleReferenceHandle: never;
|
|
3414
|
+
|
|
3415
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3416
|
+
|
|
2922
3417
|
readonly IsNil: boolean;
|
|
2923
3418
|
Equals(obj: unknown): boolean;
|
|
2924
3419
|
Equals(other: ModuleReferenceHandle): boolean;
|
|
@@ -2942,6 +3437,8 @@ export type ModuleReferenceHandle = ModuleReferenceHandle$instance & __ModuleRef
|
|
|
2942
3437
|
|
|
2943
3438
|
|
|
2944
3439
|
export interface NamespaceDefinition$instance {
|
|
3440
|
+
readonly __tsonic_type_System_Reflection_Metadata_NamespaceDefinition: never;
|
|
3441
|
+
|
|
2945
3442
|
readonly ExportedTypes: ImmutableArray_1<ExportedTypeHandle>;
|
|
2946
3443
|
readonly Name: StringHandle;
|
|
2947
3444
|
readonly NamespaceDefinitions: ImmutableArray_1<NamespaceDefinitionHandle>;
|
|
@@ -2958,6 +3455,10 @@ export const NamespaceDefinition: {
|
|
|
2958
3455
|
export type NamespaceDefinition = NamespaceDefinition$instance;
|
|
2959
3456
|
|
|
2960
3457
|
export interface NamespaceDefinitionHandle$instance {
|
|
3458
|
+
readonly __tsonic_type_System_Reflection_Metadata_NamespaceDefinitionHandle: never;
|
|
3459
|
+
|
|
3460
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3461
|
+
|
|
2961
3462
|
readonly IsNil: boolean;
|
|
2962
3463
|
Equals(obj: unknown): boolean;
|
|
2963
3464
|
Equals(other: NamespaceDefinitionHandle): boolean;
|
|
@@ -2981,6 +3482,8 @@ export type NamespaceDefinitionHandle = NamespaceDefinitionHandle$instance & __N
|
|
|
2981
3482
|
|
|
2982
3483
|
|
|
2983
3484
|
export interface Parameter$instance {
|
|
3485
|
+
readonly __tsonic_type_System_Reflection_Metadata_Parameter: never;
|
|
3486
|
+
|
|
2984
3487
|
readonly Attributes: ParameterAttributes;
|
|
2985
3488
|
readonly Name: StringHandle;
|
|
2986
3489
|
readonly SequenceNumber: int;
|
|
@@ -2998,6 +3501,10 @@ export const Parameter: {
|
|
|
2998
3501
|
export type Parameter = Parameter$instance;
|
|
2999
3502
|
|
|
3000
3503
|
export interface ParameterHandle$instance {
|
|
3504
|
+
readonly __tsonic_type_System_Reflection_Metadata_ParameterHandle: never;
|
|
3505
|
+
|
|
3506
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3507
|
+
|
|
3001
3508
|
readonly IsNil: boolean;
|
|
3002
3509
|
Equals(obj: unknown): boolean;
|
|
3003
3510
|
Equals(other: ParameterHandle): boolean;
|
|
@@ -3021,6 +3528,12 @@ export type ParameterHandle = ParameterHandle$instance & __ParameterHandle$views
|
|
|
3021
3528
|
|
|
3022
3529
|
|
|
3023
3530
|
export interface ParameterHandleCollection$instance {
|
|
3531
|
+
readonly __tsonic_type_System_Reflection_Metadata_ParameterHandleCollection: never;
|
|
3532
|
+
|
|
3533
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
3534
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
3535
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
3536
|
+
|
|
3024
3537
|
readonly Count: int;
|
|
3025
3538
|
GetEnumerator(): ParameterHandleCollection_Enumerator;
|
|
3026
3539
|
}
|
|
@@ -3041,6 +3554,12 @@ export type ParameterHandleCollection = ParameterHandleCollection$instance & __P
|
|
|
3041
3554
|
|
|
3042
3555
|
|
|
3043
3556
|
export interface ParameterHandleCollection_Enumerator$instance {
|
|
3557
|
+
readonly __tsonic_type_System_Reflection_Metadata_ParameterHandleCollection_Enumerator: never;
|
|
3558
|
+
|
|
3559
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3560
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3561
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
3562
|
+
|
|
3044
3563
|
readonly Current: ParameterHandle;
|
|
3045
3564
|
MoveNext(): boolean;
|
|
3046
3565
|
Reset(): void;
|
|
@@ -3061,6 +3580,8 @@ export type ParameterHandleCollection_Enumerator = ParameterHandleCollection_Enu
|
|
|
3061
3580
|
|
|
3062
3581
|
|
|
3063
3582
|
export interface PropertyAccessors$instance {
|
|
3583
|
+
readonly __tsonic_type_System_Reflection_Metadata_PropertyAccessors: never;
|
|
3584
|
+
|
|
3064
3585
|
readonly Getter: MethodDefinitionHandle;
|
|
3065
3586
|
readonly Others: ImmutableArray_1<MethodDefinitionHandle>;
|
|
3066
3587
|
readonly Setter: MethodDefinitionHandle;
|
|
@@ -3075,6 +3596,8 @@ export const PropertyAccessors: {
|
|
|
3075
3596
|
export type PropertyAccessors = PropertyAccessors$instance;
|
|
3076
3597
|
|
|
3077
3598
|
export interface PropertyDefinition$instance {
|
|
3599
|
+
readonly __tsonic_type_System_Reflection_Metadata_PropertyDefinition: never;
|
|
3600
|
+
|
|
3078
3601
|
readonly Attributes: PropertyAttributes;
|
|
3079
3602
|
readonly Name: StringHandle;
|
|
3080
3603
|
readonly Signature: BlobHandle;
|
|
@@ -3094,6 +3617,10 @@ export const PropertyDefinition: {
|
|
|
3094
3617
|
export type PropertyDefinition = PropertyDefinition$instance;
|
|
3095
3618
|
|
|
3096
3619
|
export interface PropertyDefinitionHandle$instance {
|
|
3620
|
+
readonly __tsonic_type_System_Reflection_Metadata_PropertyDefinitionHandle: never;
|
|
3621
|
+
|
|
3622
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3623
|
+
|
|
3097
3624
|
readonly IsNil: boolean;
|
|
3098
3625
|
Equals(obj: unknown): boolean;
|
|
3099
3626
|
Equals(other: PropertyDefinitionHandle): boolean;
|
|
@@ -3117,6 +3644,12 @@ export type PropertyDefinitionHandle = PropertyDefinitionHandle$instance & __Pro
|
|
|
3117
3644
|
|
|
3118
3645
|
|
|
3119
3646
|
export interface PropertyDefinitionHandleCollection$instance {
|
|
3647
|
+
readonly __tsonic_type_System_Reflection_Metadata_PropertyDefinitionHandleCollection: never;
|
|
3648
|
+
|
|
3649
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
3650
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
3651
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
3652
|
+
|
|
3120
3653
|
readonly Count: int;
|
|
3121
3654
|
GetEnumerator(): PropertyDefinitionHandleCollection_Enumerator;
|
|
3122
3655
|
}
|
|
@@ -3137,6 +3670,12 @@ export type PropertyDefinitionHandleCollection = PropertyDefinitionHandleCollect
|
|
|
3137
3670
|
|
|
3138
3671
|
|
|
3139
3672
|
export interface PropertyDefinitionHandleCollection_Enumerator$instance {
|
|
3673
|
+
readonly __tsonic_type_System_Reflection_Metadata_PropertyDefinitionHandleCollection_Enumerator: never;
|
|
3674
|
+
|
|
3675
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3676
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3677
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
3678
|
+
|
|
3140
3679
|
readonly Current: PropertyDefinitionHandle;
|
|
3141
3680
|
MoveNext(): boolean;
|
|
3142
3681
|
Reset(): void;
|
|
@@ -3157,6 +3696,8 @@ export type PropertyDefinitionHandleCollection_Enumerator = PropertyDefinitionHa
|
|
|
3157
3696
|
|
|
3158
3697
|
|
|
3159
3698
|
export interface ReservedBlob_1$instance<THandle extends unknown> {
|
|
3699
|
+
readonly __tsonic_type_System_Reflection_Metadata_ReservedBlob_1: never;
|
|
3700
|
+
|
|
3160
3701
|
readonly Content: Blob;
|
|
3161
3702
|
readonly Handle: THandle;
|
|
3162
3703
|
CreateWriter(): BlobWriter;
|
|
@@ -3171,6 +3712,10 @@ export const ReservedBlob_1: {
|
|
|
3171
3712
|
export type ReservedBlob_1<THandle> = ReservedBlob_1$instance<THandle>;
|
|
3172
3713
|
|
|
3173
3714
|
export interface SequencePoint$instance {
|
|
3715
|
+
readonly __tsonic_type_System_Reflection_Metadata_SequencePoint: never;
|
|
3716
|
+
|
|
3717
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3718
|
+
|
|
3174
3719
|
readonly Document: DocumentHandle;
|
|
3175
3720
|
readonly EndColumn: int;
|
|
3176
3721
|
readonly EndLine: int;
|
|
@@ -3201,6 +3746,11 @@ export type SequencePoint = SequencePoint$instance & __SequencePoint$views;
|
|
|
3201
3746
|
|
|
3202
3747
|
|
|
3203
3748
|
export interface SequencePointCollection$instance {
|
|
3749
|
+
readonly __tsonic_type_System_Reflection_Metadata_SequencePointCollection: never;
|
|
3750
|
+
|
|
3751
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
3752
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
3753
|
+
|
|
3204
3754
|
GetEnumerator(): SequencePointCollection_Enumerator;
|
|
3205
3755
|
}
|
|
3206
3756
|
|
|
@@ -3219,6 +3769,12 @@ export type SequencePointCollection = SequencePointCollection$instance & __Seque
|
|
|
3219
3769
|
|
|
3220
3770
|
|
|
3221
3771
|
export interface SequencePointCollection_Enumerator$instance {
|
|
3772
|
+
readonly __tsonic_type_System_Reflection_Metadata_SequencePointCollection_Enumerator: never;
|
|
3773
|
+
|
|
3774
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3775
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3776
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
3777
|
+
|
|
3222
3778
|
readonly Current: SequencePoint;
|
|
3223
3779
|
MoveNext(): boolean;
|
|
3224
3780
|
Reset(): void;
|
|
@@ -3240,6 +3796,10 @@ export type SequencePointCollection_Enumerator = SequencePointCollection_Enumera
|
|
|
3240
3796
|
|
|
3241
3797
|
|
|
3242
3798
|
export interface SignatureHeader$instance {
|
|
3799
|
+
readonly __tsonic_type_System_Reflection_Metadata_SignatureHeader: never;
|
|
3800
|
+
|
|
3801
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3802
|
+
|
|
3243
3803
|
readonly Attributes: SignatureAttributes;
|
|
3244
3804
|
readonly CallingConvention: SignatureCallingConvention;
|
|
3245
3805
|
readonly HasExplicitThis: boolean;
|
|
@@ -3272,6 +3832,8 @@ export type SignatureHeader = SignatureHeader$instance & __SignatureHeader$views
|
|
|
3272
3832
|
|
|
3273
3833
|
|
|
3274
3834
|
export interface StandaloneSignature$instance {
|
|
3835
|
+
readonly __tsonic_type_System_Reflection_Metadata_StandaloneSignature: never;
|
|
3836
|
+
|
|
3275
3837
|
readonly Signature: BlobHandle;
|
|
3276
3838
|
DecodeLocalSignature<TType, TGenericContext>(provider: ISignatureTypeProvider_2<TType, TGenericContext>, genericContext: TGenericContext): ImmutableArray_1<TType>;
|
|
3277
3839
|
DecodeMethodSignature<TType, TGenericContext>(provider: ISignatureTypeProvider_2<TType, TGenericContext>, genericContext: TGenericContext): MethodSignature_1<TType>;
|
|
@@ -3288,6 +3850,10 @@ export const StandaloneSignature: {
|
|
|
3288
3850
|
export type StandaloneSignature = StandaloneSignature$instance;
|
|
3289
3851
|
|
|
3290
3852
|
export interface StandaloneSignatureHandle$instance {
|
|
3853
|
+
readonly __tsonic_type_System_Reflection_Metadata_StandaloneSignatureHandle: never;
|
|
3854
|
+
|
|
3855
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3856
|
+
|
|
3291
3857
|
readonly IsNil: boolean;
|
|
3292
3858
|
Equals(obj: unknown): boolean;
|
|
3293
3859
|
Equals(other: StandaloneSignatureHandle): boolean;
|
|
@@ -3311,6 +3877,10 @@ export type StandaloneSignatureHandle = StandaloneSignatureHandle$instance & __S
|
|
|
3311
3877
|
|
|
3312
3878
|
|
|
3313
3879
|
export interface StringHandle$instance {
|
|
3880
|
+
readonly __tsonic_type_System_Reflection_Metadata_StringHandle: never;
|
|
3881
|
+
|
|
3882
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3883
|
+
|
|
3314
3884
|
readonly IsNil: boolean;
|
|
3315
3885
|
Equals(obj: unknown): boolean;
|
|
3316
3886
|
Equals(other: StringHandle): boolean;
|
|
@@ -3334,6 +3904,8 @@ export type StringHandle = StringHandle$instance & __StringHandle$views;
|
|
|
3334
3904
|
|
|
3335
3905
|
|
|
3336
3906
|
export interface TypeDefinition$instance {
|
|
3907
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeDefinition: never;
|
|
3908
|
+
|
|
3337
3909
|
readonly Attributes: TypeAttributes;
|
|
3338
3910
|
readonly BaseType: EntityHandle;
|
|
3339
3911
|
readonly IsNested: boolean;
|
|
@@ -3363,6 +3935,10 @@ export const TypeDefinition: {
|
|
|
3363
3935
|
export type TypeDefinition = TypeDefinition$instance;
|
|
3364
3936
|
|
|
3365
3937
|
export interface TypeDefinitionHandle$instance {
|
|
3938
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeDefinitionHandle: never;
|
|
3939
|
+
|
|
3940
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3941
|
+
|
|
3366
3942
|
readonly IsNil: boolean;
|
|
3367
3943
|
Equals(obj: unknown): boolean;
|
|
3368
3944
|
Equals(other: TypeDefinitionHandle): boolean;
|
|
@@ -3386,6 +3962,12 @@ export type TypeDefinitionHandle = TypeDefinitionHandle$instance & __TypeDefinit
|
|
|
3386
3962
|
|
|
3387
3963
|
|
|
3388
3964
|
export interface TypeDefinitionHandleCollection$instance {
|
|
3965
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeDefinitionHandleCollection: never;
|
|
3966
|
+
|
|
3967
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
3968
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
3969
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
3970
|
+
|
|
3389
3971
|
readonly Count: int;
|
|
3390
3972
|
GetEnumerator(): TypeDefinitionHandleCollection_Enumerator;
|
|
3391
3973
|
}
|
|
@@ -3406,6 +3988,12 @@ export type TypeDefinitionHandleCollection = TypeDefinitionHandleCollection$inst
|
|
|
3406
3988
|
|
|
3407
3989
|
|
|
3408
3990
|
export interface TypeDefinitionHandleCollection_Enumerator$instance {
|
|
3991
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeDefinitionHandleCollection_Enumerator: never;
|
|
3992
|
+
|
|
3993
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3994
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3995
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
3996
|
+
|
|
3409
3997
|
readonly Current: TypeDefinitionHandle;
|
|
3410
3998
|
MoveNext(): boolean;
|
|
3411
3999
|
Reset(): void;
|
|
@@ -3426,6 +4014,8 @@ export type TypeDefinitionHandleCollection_Enumerator = TypeDefinitionHandleColl
|
|
|
3426
4014
|
|
|
3427
4015
|
|
|
3428
4016
|
export interface TypeLayout$instance {
|
|
4017
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeLayout: never;
|
|
4018
|
+
|
|
3429
4019
|
readonly IsDefault: boolean;
|
|
3430
4020
|
readonly PackingSize: int;
|
|
3431
4021
|
readonly Size: int;
|
|
@@ -3440,6 +4030,8 @@ export const TypeLayout: {
|
|
|
3440
4030
|
export type TypeLayout = TypeLayout$instance;
|
|
3441
4031
|
|
|
3442
4032
|
export interface TypeReference$instance {
|
|
4033
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeReference: never;
|
|
4034
|
+
|
|
3443
4035
|
readonly Name: StringHandle;
|
|
3444
4036
|
readonly Namespace: StringHandle;
|
|
3445
4037
|
readonly ResolutionScope: EntityHandle;
|
|
@@ -3454,6 +4046,10 @@ export const TypeReference: {
|
|
|
3454
4046
|
export type TypeReference = TypeReference$instance;
|
|
3455
4047
|
|
|
3456
4048
|
export interface TypeReferenceHandle$instance {
|
|
4049
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeReferenceHandle: never;
|
|
4050
|
+
|
|
4051
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4052
|
+
|
|
3457
4053
|
readonly IsNil: boolean;
|
|
3458
4054
|
Equals(obj: unknown): boolean;
|
|
3459
4055
|
Equals(other: TypeReferenceHandle): boolean;
|
|
@@ -3477,6 +4073,12 @@ export type TypeReferenceHandle = TypeReferenceHandle$instance & __TypeReference
|
|
|
3477
4073
|
|
|
3478
4074
|
|
|
3479
4075
|
export interface TypeReferenceHandleCollection$instance {
|
|
4076
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeReferenceHandleCollection: never;
|
|
4077
|
+
|
|
4078
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
4079
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
4080
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
4081
|
+
|
|
3480
4082
|
readonly Count: int;
|
|
3481
4083
|
GetEnumerator(): TypeReferenceHandleCollection_Enumerator;
|
|
3482
4084
|
}
|
|
@@ -3497,6 +4099,12 @@ export type TypeReferenceHandleCollection = TypeReferenceHandleCollection$instan
|
|
|
3497
4099
|
|
|
3498
4100
|
|
|
3499
4101
|
export interface TypeReferenceHandleCollection_Enumerator$instance {
|
|
4102
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeReferenceHandleCollection_Enumerator: never;
|
|
4103
|
+
|
|
4104
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
4105
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
4106
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
4107
|
+
|
|
3500
4108
|
readonly Current: TypeReferenceHandle;
|
|
3501
4109
|
MoveNext(): boolean;
|
|
3502
4110
|
Reset(): void;
|
|
@@ -3517,6 +4125,8 @@ export type TypeReferenceHandleCollection_Enumerator = TypeReferenceHandleCollec
|
|
|
3517
4125
|
|
|
3518
4126
|
|
|
3519
4127
|
export interface TypeSpecification$instance {
|
|
4128
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeSpecification: never;
|
|
4129
|
+
|
|
3520
4130
|
readonly Signature: BlobHandle;
|
|
3521
4131
|
DecodeSignature<TType, TGenericContext>(provider: ISignatureTypeProvider_2<TType, TGenericContext>, genericContext: TGenericContext): TType;
|
|
3522
4132
|
GetCustomAttributes(): CustomAttributeHandleCollection;
|
|
@@ -3531,6 +4141,10 @@ export const TypeSpecification: {
|
|
|
3531
4141
|
export type TypeSpecification = TypeSpecification$instance;
|
|
3532
4142
|
|
|
3533
4143
|
export interface TypeSpecificationHandle$instance {
|
|
4144
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeSpecificationHandle: never;
|
|
4145
|
+
|
|
4146
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4147
|
+
|
|
3534
4148
|
readonly IsNil: boolean;
|
|
3535
4149
|
Equals(obj: unknown): boolean;
|
|
3536
4150
|
Equals(other: TypeSpecificationHandle): boolean;
|
|
@@ -3554,6 +4168,10 @@ export type TypeSpecificationHandle = TypeSpecificationHandle$instance & __TypeS
|
|
|
3554
4168
|
|
|
3555
4169
|
|
|
3556
4170
|
export interface UserStringHandle$instance {
|
|
4171
|
+
readonly __tsonic_type_System_Reflection_Metadata_UserStringHandle: never;
|
|
4172
|
+
|
|
4173
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4174
|
+
|
|
3557
4175
|
readonly IsNil: boolean;
|
|
3558
4176
|
Equals(obj: unknown): boolean;
|
|
3559
4177
|
Equals(other: UserStringHandle): boolean;
|
|
@@ -3577,6 +4195,8 @@ export type UserStringHandle = UserStringHandle$instance & __UserStringHandle$vi
|
|
|
3577
4195
|
|
|
3578
4196
|
|
|
3579
4197
|
export interface AssemblyNameInfo$instance {
|
|
4198
|
+
readonly __tsonic_type_System_Reflection_Metadata_AssemblyNameInfo: never;
|
|
4199
|
+
|
|
3580
4200
|
readonly CultureName: string | undefined;
|
|
3581
4201
|
readonly Flags: AssemblyNameFlags;
|
|
3582
4202
|
readonly FullName: string;
|
|
@@ -3597,6 +4217,8 @@ export const AssemblyNameInfo: {
|
|
|
3597
4217
|
export type AssemblyNameInfo = AssemblyNameInfo$instance;
|
|
3598
4218
|
|
|
3599
4219
|
export interface BlobBuilder$instance {
|
|
4220
|
+
readonly __tsonic_type_System_Reflection_Metadata_BlobBuilder: never;
|
|
4221
|
+
|
|
3600
4222
|
readonly Count: int;
|
|
3601
4223
|
Align(alignment: int): void;
|
|
3602
4224
|
AllocateChunk(minimalSize: int): BlobBuilder;
|
|
@@ -3660,6 +4282,8 @@ export const BlobBuilder: {
|
|
|
3660
4282
|
export type BlobBuilder = BlobBuilder$instance;
|
|
3661
4283
|
|
|
3662
4284
|
export interface DebugMetadataHeader$instance {
|
|
4285
|
+
readonly __tsonic_type_System_Reflection_Metadata_DebugMetadataHeader: never;
|
|
4286
|
+
|
|
3663
4287
|
readonly EntryPoint: MethodDefinitionHandle;
|
|
3664
4288
|
readonly Id: ImmutableArray_1<System_Internal.Byte>;
|
|
3665
4289
|
readonly IdStartOffset: int;
|
|
@@ -3673,6 +4297,11 @@ export const DebugMetadataHeader: {
|
|
|
3673
4297
|
export type DebugMetadataHeader = DebugMetadataHeader$instance;
|
|
3674
4298
|
|
|
3675
4299
|
export interface HandleComparer$instance {
|
|
4300
|
+
readonly __tsonic_type_System_Reflection_Metadata_HandleComparer: never;
|
|
4301
|
+
|
|
4302
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
4303
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
4304
|
+
|
|
3676
4305
|
Compare(x: Handle, y: Handle): int;
|
|
3677
4306
|
Compare(x: EntityHandle, y: EntityHandle): int;
|
|
3678
4307
|
Equals(x: Handle, y: Handle): boolean;
|
|
@@ -3692,12 +4321,14 @@ export interface __HandleComparer$views {
|
|
|
3692
4321
|
As_IEqualityComparer_1(): System_Collections_Generic_Internal.IEqualityComparer_1$instance<Handle>;
|
|
3693
4322
|
}
|
|
3694
4323
|
|
|
3695
|
-
export interface HandleComparer$instance extends System_Collections_Generic_Internal.IComparer_1$instance<EntityHandle> {}
|
|
3696
|
-
|
|
3697
4324
|
export type HandleComparer = HandleComparer$instance & __HandleComparer$views;
|
|
3698
4325
|
|
|
3699
4326
|
|
|
3700
4327
|
export interface ImageFormatLimitationException$instance extends Exception {
|
|
4328
|
+
readonly __tsonic_type_System_Reflection_Metadata_ImageFormatLimitationException: never;
|
|
4329
|
+
|
|
4330
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
4331
|
+
|
|
3701
4332
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
3702
4333
|
}
|
|
3703
4334
|
|
|
@@ -3717,6 +4348,8 @@ export type ImageFormatLimitationException = ImageFormatLimitationException$inst
|
|
|
3717
4348
|
|
|
3718
4349
|
|
|
3719
4350
|
export interface MetadataReader$instance {
|
|
4351
|
+
readonly __tsonic_type_System_Reflection_Metadata_MetadataReader: never;
|
|
4352
|
+
|
|
3720
4353
|
readonly AssemblyFiles: AssemblyFileHandleCollection;
|
|
3721
4354
|
readonly AssemblyReferences: AssemblyReferenceHandleCollection;
|
|
3722
4355
|
readonly CustomAttributes: CustomAttributeHandleCollection;
|
|
@@ -3807,7 +4440,11 @@ export const MetadataReader: {
|
|
|
3807
4440
|
|
|
3808
4441
|
export type MetadataReader = MetadataReader$instance;
|
|
3809
4442
|
|
|
3810
|
-
export interface MetadataReaderProvider$instance {
|
|
4443
|
+
export interface MetadataReaderProvider$instance extends System_Internal.IDisposable$instance {
|
|
4444
|
+
readonly __tsonic_type_System_Reflection_Metadata_MetadataReaderProvider: never;
|
|
4445
|
+
|
|
4446
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
4447
|
+
|
|
3811
4448
|
Dispose(): void;
|
|
3812
4449
|
GetMetadataReader(options?: MetadataReaderOptions, utf8Decoder?: MetadataStringDecoder): MetadataReader;
|
|
3813
4450
|
}
|
|
@@ -3827,12 +4464,12 @@ export interface __MetadataReaderProvider$views {
|
|
|
3827
4464
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
3828
4465
|
}
|
|
3829
4466
|
|
|
3830
|
-
export interface MetadataReaderProvider$instance extends System_Internal.IDisposable$instance {}
|
|
3831
|
-
|
|
3832
4467
|
export type MetadataReaderProvider = MetadataReaderProvider$instance & __MetadataReaderProvider$views;
|
|
3833
4468
|
|
|
3834
4469
|
|
|
3835
4470
|
export interface MetadataStringDecoder$instance {
|
|
4471
|
+
readonly __tsonic_type_System_Reflection_Metadata_MetadataStringDecoder: never;
|
|
4472
|
+
|
|
3836
4473
|
readonly Encoding: Encoding;
|
|
3837
4474
|
GetString(bytes: ptr<byte>, byteCount: int): string;
|
|
3838
4475
|
}
|
|
@@ -3847,6 +4484,8 @@ export const MetadataStringDecoder: {
|
|
|
3847
4484
|
export type MetadataStringDecoder = MetadataStringDecoder$instance;
|
|
3848
4485
|
|
|
3849
4486
|
export interface MetadataUpdateHandlerAttribute$instance extends Attribute {
|
|
4487
|
+
readonly __tsonic_type_System_Reflection_Metadata_MetadataUpdateHandlerAttribute: never;
|
|
4488
|
+
|
|
3850
4489
|
readonly HandlerType: Type;
|
|
3851
4490
|
}
|
|
3852
4491
|
|
|
@@ -3859,6 +4498,8 @@ export const MetadataUpdateHandlerAttribute: {
|
|
|
3859
4498
|
export type MetadataUpdateHandlerAttribute = MetadataUpdateHandlerAttribute$instance;
|
|
3860
4499
|
|
|
3861
4500
|
export interface MethodBodyBlock$instance {
|
|
4501
|
+
readonly __tsonic_type_System_Reflection_Metadata_MethodBodyBlock: never;
|
|
4502
|
+
|
|
3862
4503
|
readonly ExceptionRegions: ImmutableArray_1<ExceptionRegion>;
|
|
3863
4504
|
readonly LocalSignature: StandaloneSignatureHandle;
|
|
3864
4505
|
readonly LocalVariablesInitialized: boolean;
|
|
@@ -3878,6 +4519,8 @@ export const MethodBodyBlock: {
|
|
|
3878
4519
|
export type MethodBodyBlock = MethodBodyBlock$instance;
|
|
3879
4520
|
|
|
3880
4521
|
export interface TypeName$instance {
|
|
4522
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeName: never;
|
|
4523
|
+
|
|
3881
4524
|
readonly AssemblyName: AssemblyNameInfo | undefined;
|
|
3882
4525
|
readonly AssemblyQualifiedName: string;
|
|
3883
4526
|
readonly DeclaringType: TypeName;
|
|
@@ -3916,6 +4559,8 @@ export const TypeName: {
|
|
|
3916
4559
|
export type TypeName = TypeName$instance;
|
|
3917
4560
|
|
|
3918
4561
|
export interface TypeNameParseOptions$instance {
|
|
4562
|
+
readonly __tsonic_type_System_Reflection_Metadata_TypeNameParseOptions: never;
|
|
4563
|
+
|
|
3919
4564
|
MaxNodes: int;
|
|
3920
4565
|
}
|
|
3921
4566
|
|