@tsonic/dotnet 10.0.5 → 10.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +6 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +38 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +58 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +8 -0
- package/Microsoft.Win32/internal/index.d.ts +3 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +34 -0
- package/System/internal/index.d.ts +413 -159
- package/System.Buffers/internal/index.d.ts +24 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +4 -0
- package/System.Collections/internal/index.d.ts +35 -21
- package/System.Collections.Concurrent/internal/index.d.ts +17 -3
- package/System.Collections.Frozen/internal/index.d.ts +12 -0
- package/System.Collections.Generic/internal/index.d.ts +121 -33
- package/System.Collections.Immutable/internal/index.d.ts +44 -0
- package/System.Collections.ObjectModel/internal/index.d.ts +20 -6
- package/System.Collections.Specialized/internal/index.d.ts +30 -6
- package/System.ComponentModel/internal/index.d.ts +269 -21
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +73 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +47 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +22 -0
- package/System.Data/internal/index.d.ts +110 -18
- package/System.Data.Common/internal/index.d.ts +64 -30
- package/System.Data.SqlTypes/internal/index.d.ts +58 -48
- package/System.Diagnostics/internal/index.d.ts +143 -9
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +26 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +31 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +8 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +40 -6
- package/System.Drawing/internal/index.d.ts +24 -0
- package/System.Dynamic/internal/index.d.ts +37 -5
- package/System.Formats.Asn1/internal/index.d.ts +13 -3
- package/System.Formats.Tar/internal/index.d.ts +20 -6
- package/System.Globalization/internal/index.d.ts +64 -18
- package/System.IO/internal/index.d.ts +74 -18
- package/System.IO.Compression/internal/index.d.ts +25 -9
- package/System.IO.Enumeration/internal/index.d.ts +6 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +9 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +6 -0
- package/System.IO.Pipelines/internal/index.d.ts +18 -2
- package/System.IO.Pipes/internal/index.d.ts +16 -0
- package/System.Linq/internal/index.d.ts +17 -3
- package/System.Linq.Expressions/internal/index.d.ts +86 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +109 -19
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +50 -0
- package/System.Net.Http.Headers/internal/index.d.ts +78 -60
- package/System.Net.Http.Json/internal/index.d.ts +2 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +31 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +62 -0
- package/System.Net.Quic/internal/index.d.ts +22 -6
- package/System.Net.Security/internal/index.d.ts +27 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +38 -6
- package/System.Net.WebSockets/internal/index.d.ts +23 -3
- package/System.Numerics/internal/index.d.ts +24 -6
- package/System.Reflection/internal/index.d.ts +134 -30
- package/System.Reflection.Emit/internal/index.d.ts +45 -9
- package/System.Reflection.Metadata/internal/index.d.ts +321 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +76 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +37 -3
- package/System.Resources/internal/index.d.ts +16 -0
- package/System.Runtime/internal/index.d.ts +12 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +275 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +174 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +40 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +55 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +57 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +12 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +7 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +75 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +3 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +4 -0
- package/System.Runtime.Versioning/internal/index.d.ts +26 -0
- package/System.Security/internal/index.d.ts +28 -6
- package/System.Security.AccessControl/internal/index.d.ts +94 -0
- package/System.Security.Authentication/internal/index.d.ts +4 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +9 -3
- package/System.Security.Claims/internal/index.d.ts +8 -6
- package/System.Security.Cryptography/internal/index.d.ts +298 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +69 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +4 -0
- package/System.Security.Principal/internal/index.d.ts +19 -5
- package/System.Text/internal/index.d.ts +68 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +32 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +10 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +54 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +23 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +33 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +108 -24
- package/System.Threading.Channels/internal/index.d.ts +18 -0
- package/System.Threading.Tasks/internal/index.d.ts +34 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +32 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +2 -0
- package/System.Timers/internal/index.d.ts +7 -3
- package/System.Transactions/internal/index.d.ts +37 -15
- package/System.Web/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +106 -18
- package/System.Xml.Linq/internal/index.d.ts +41 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +148 -0
- package/System.Xml.Serialization/internal/index.d.ts +116 -0
- package/System.Xml.XPath/internal/index.d.ts +14 -6
- package/System.Xml.Xsl/internal/index.d.ts +16 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +88 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -429,6 +429,8 @@ export interface IReflectableType$instance {
|
|
|
429
429
|
export type IReflectableType = IReflectableType$instance;
|
|
430
430
|
|
|
431
431
|
export interface CustomAttributeNamedArgument$instance {
|
|
432
|
+
readonly __tsonic_type_System_Reflection_CustomAttributeNamedArgument: never;
|
|
433
|
+
|
|
432
434
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
433
435
|
|
|
434
436
|
readonly IsField: boolean;
|
|
@@ -459,6 +461,8 @@ export type CustomAttributeNamedArgument = CustomAttributeNamedArgument$instance
|
|
|
459
461
|
|
|
460
462
|
|
|
461
463
|
export interface CustomAttributeTypedArgument$instance {
|
|
464
|
+
readonly __tsonic_type_System_Reflection_CustomAttributeTypedArgument: never;
|
|
465
|
+
|
|
462
466
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
463
467
|
|
|
464
468
|
readonly ArgumentType: Type;
|
|
@@ -487,6 +491,8 @@ export type CustomAttributeTypedArgument = CustomAttributeTypedArgument$instance
|
|
|
487
491
|
|
|
488
492
|
|
|
489
493
|
export interface InterfaceMapping$instance {
|
|
494
|
+
readonly __tsonic_type_System_Reflection_InterfaceMapping: never;
|
|
495
|
+
|
|
490
496
|
TargetType: Type;
|
|
491
497
|
InterfaceType: Type;
|
|
492
498
|
TargetMethods: MethodInfo[];
|
|
@@ -502,6 +508,8 @@ export const InterfaceMapping: {
|
|
|
502
508
|
export type InterfaceMapping = InterfaceMapping$instance;
|
|
503
509
|
|
|
504
510
|
export interface ParameterModifier$instance {
|
|
511
|
+
readonly __tsonic_type_System_Reflection_ParameterModifier: never;
|
|
512
|
+
|
|
505
513
|
[index: number]: boolean;
|
|
506
514
|
}
|
|
507
515
|
|
|
@@ -514,6 +522,8 @@ export const ParameterModifier: {
|
|
|
514
522
|
export type ParameterModifier = ParameterModifier$instance;
|
|
515
523
|
|
|
516
524
|
export interface AmbiguousMatchException$instance extends SystemException {
|
|
525
|
+
readonly __tsonic_type_System_Reflection_AmbiguousMatchException: never;
|
|
526
|
+
|
|
517
527
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
518
528
|
|
|
519
529
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -534,7 +544,9 @@ export interface __AmbiguousMatchException$views {
|
|
|
534
544
|
export type AmbiguousMatchException = AmbiguousMatchException$instance & __AmbiguousMatchException$views;
|
|
535
545
|
|
|
536
546
|
|
|
537
|
-
export interface Assembly$instance {
|
|
547
|
+
export interface Assembly$instance extends ICustomAttributeProvider$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
548
|
+
readonly __tsonic_type_System_Reflection_Assembly: never;
|
|
549
|
+
|
|
538
550
|
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
539
551
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
540
552
|
|
|
@@ -622,12 +634,12 @@ export interface __Assembly$views {
|
|
|
622
634
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
623
635
|
}
|
|
624
636
|
|
|
625
|
-
export interface Assembly$instance extends ICustomAttributeProvider$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
626
|
-
|
|
627
637
|
export type Assembly = Assembly$instance & __Assembly$views;
|
|
628
638
|
|
|
629
639
|
|
|
630
640
|
export interface AssemblyAlgorithmIdAttribute$instance extends Attribute {
|
|
641
|
+
readonly __tsonic_type_System_Reflection_AssemblyAlgorithmIdAttribute: never;
|
|
642
|
+
|
|
631
643
|
readonly AlgorithmId: uint;
|
|
632
644
|
}
|
|
633
645
|
|
|
@@ -641,6 +653,8 @@ export const AssemblyAlgorithmIdAttribute: {
|
|
|
641
653
|
export type AssemblyAlgorithmIdAttribute = AssemblyAlgorithmIdAttribute$instance;
|
|
642
654
|
|
|
643
655
|
export interface AssemblyCompanyAttribute$instance extends Attribute {
|
|
656
|
+
readonly __tsonic_type_System_Reflection_AssemblyCompanyAttribute: never;
|
|
657
|
+
|
|
644
658
|
readonly Company: string;
|
|
645
659
|
}
|
|
646
660
|
|
|
@@ -653,6 +667,8 @@ export const AssemblyCompanyAttribute: {
|
|
|
653
667
|
export type AssemblyCompanyAttribute = AssemblyCompanyAttribute$instance;
|
|
654
668
|
|
|
655
669
|
export interface AssemblyConfigurationAttribute$instance extends Attribute {
|
|
670
|
+
readonly __tsonic_type_System_Reflection_AssemblyConfigurationAttribute: never;
|
|
671
|
+
|
|
656
672
|
readonly Configuration: string;
|
|
657
673
|
}
|
|
658
674
|
|
|
@@ -665,6 +681,8 @@ export const AssemblyConfigurationAttribute: {
|
|
|
665
681
|
export type AssemblyConfigurationAttribute = AssemblyConfigurationAttribute$instance;
|
|
666
682
|
|
|
667
683
|
export interface AssemblyCopyrightAttribute$instance extends Attribute {
|
|
684
|
+
readonly __tsonic_type_System_Reflection_AssemblyCopyrightAttribute: never;
|
|
685
|
+
|
|
668
686
|
readonly Copyright: string;
|
|
669
687
|
}
|
|
670
688
|
|
|
@@ -677,6 +695,8 @@ export const AssemblyCopyrightAttribute: {
|
|
|
677
695
|
export type AssemblyCopyrightAttribute = AssemblyCopyrightAttribute$instance;
|
|
678
696
|
|
|
679
697
|
export interface AssemblyCultureAttribute$instance extends Attribute {
|
|
698
|
+
readonly __tsonic_type_System_Reflection_AssemblyCultureAttribute: never;
|
|
699
|
+
|
|
680
700
|
readonly Culture: string;
|
|
681
701
|
}
|
|
682
702
|
|
|
@@ -689,6 +709,8 @@ export const AssemblyCultureAttribute: {
|
|
|
689
709
|
export type AssemblyCultureAttribute = AssemblyCultureAttribute$instance;
|
|
690
710
|
|
|
691
711
|
export interface AssemblyDefaultAliasAttribute$instance extends Attribute {
|
|
712
|
+
readonly __tsonic_type_System_Reflection_AssemblyDefaultAliasAttribute: never;
|
|
713
|
+
|
|
692
714
|
readonly DefaultAlias: string;
|
|
693
715
|
}
|
|
694
716
|
|
|
@@ -701,6 +723,8 @@ export const AssemblyDefaultAliasAttribute: {
|
|
|
701
723
|
export type AssemblyDefaultAliasAttribute = AssemblyDefaultAliasAttribute$instance;
|
|
702
724
|
|
|
703
725
|
export interface AssemblyDelaySignAttribute$instance extends Attribute {
|
|
726
|
+
readonly __tsonic_type_System_Reflection_AssemblyDelaySignAttribute: never;
|
|
727
|
+
|
|
704
728
|
readonly DelaySign: boolean;
|
|
705
729
|
}
|
|
706
730
|
|
|
@@ -713,6 +737,8 @@ export const AssemblyDelaySignAttribute: {
|
|
|
713
737
|
export type AssemblyDelaySignAttribute = AssemblyDelaySignAttribute$instance;
|
|
714
738
|
|
|
715
739
|
export interface AssemblyDescriptionAttribute$instance extends Attribute {
|
|
740
|
+
readonly __tsonic_type_System_Reflection_AssemblyDescriptionAttribute: never;
|
|
741
|
+
|
|
716
742
|
readonly Description: string;
|
|
717
743
|
}
|
|
718
744
|
|
|
@@ -725,6 +751,8 @@ export const AssemblyDescriptionAttribute: {
|
|
|
725
751
|
export type AssemblyDescriptionAttribute = AssemblyDescriptionAttribute$instance;
|
|
726
752
|
|
|
727
753
|
export interface AssemblyFileVersionAttribute$instance extends Attribute {
|
|
754
|
+
readonly __tsonic_type_System_Reflection_AssemblyFileVersionAttribute: never;
|
|
755
|
+
|
|
728
756
|
readonly Version: string;
|
|
729
757
|
}
|
|
730
758
|
|
|
@@ -737,6 +765,8 @@ export const AssemblyFileVersionAttribute: {
|
|
|
737
765
|
export type AssemblyFileVersionAttribute = AssemblyFileVersionAttribute$instance;
|
|
738
766
|
|
|
739
767
|
export interface AssemblyFlagsAttribute$instance extends Attribute {
|
|
768
|
+
readonly __tsonic_type_System_Reflection_AssemblyFlagsAttribute: never;
|
|
769
|
+
|
|
740
770
|
readonly AssemblyFlags: int;
|
|
741
771
|
readonly Flags: uint;
|
|
742
772
|
}
|
|
@@ -752,6 +782,8 @@ export const AssemblyFlagsAttribute: {
|
|
|
752
782
|
export type AssemblyFlagsAttribute = AssemblyFlagsAttribute$instance;
|
|
753
783
|
|
|
754
784
|
export interface AssemblyInformationalVersionAttribute$instance extends Attribute {
|
|
785
|
+
readonly __tsonic_type_System_Reflection_AssemblyInformationalVersionAttribute: never;
|
|
786
|
+
|
|
755
787
|
readonly InformationalVersion: string;
|
|
756
788
|
}
|
|
757
789
|
|
|
@@ -764,6 +796,8 @@ export const AssemblyInformationalVersionAttribute: {
|
|
|
764
796
|
export type AssemblyInformationalVersionAttribute = AssemblyInformationalVersionAttribute$instance;
|
|
765
797
|
|
|
766
798
|
export interface AssemblyKeyFileAttribute$instance extends Attribute {
|
|
799
|
+
readonly __tsonic_type_System_Reflection_AssemblyKeyFileAttribute: never;
|
|
800
|
+
|
|
767
801
|
readonly KeyFile: string;
|
|
768
802
|
}
|
|
769
803
|
|
|
@@ -776,6 +810,8 @@ export const AssemblyKeyFileAttribute: {
|
|
|
776
810
|
export type AssemblyKeyFileAttribute = AssemblyKeyFileAttribute$instance;
|
|
777
811
|
|
|
778
812
|
export interface AssemblyKeyNameAttribute$instance extends Attribute {
|
|
813
|
+
readonly __tsonic_type_System_Reflection_AssemblyKeyNameAttribute: never;
|
|
814
|
+
|
|
779
815
|
readonly KeyName: string;
|
|
780
816
|
}
|
|
781
817
|
|
|
@@ -788,6 +824,8 @@ export const AssemblyKeyNameAttribute: {
|
|
|
788
824
|
export type AssemblyKeyNameAttribute = AssemblyKeyNameAttribute$instance;
|
|
789
825
|
|
|
790
826
|
export interface AssemblyMetadataAttribute$instance extends Attribute {
|
|
827
|
+
readonly __tsonic_type_System_Reflection_AssemblyMetadataAttribute: never;
|
|
828
|
+
|
|
791
829
|
readonly Key: string;
|
|
792
830
|
readonly Value: string | undefined;
|
|
793
831
|
}
|
|
@@ -800,7 +838,9 @@ export const AssemblyMetadataAttribute: {
|
|
|
800
838
|
|
|
801
839
|
export type AssemblyMetadataAttribute = AssemblyMetadataAttribute$instance;
|
|
802
840
|
|
|
803
|
-
export interface AssemblyName$instance {
|
|
841
|
+
export interface AssemblyName$instance extends System_Internal.ICloneable$instance, System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
842
|
+
readonly __tsonic_type_System_Reflection_AssemblyName: never;
|
|
843
|
+
|
|
804
844
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
805
845
|
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
806
846
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
@@ -849,12 +889,12 @@ export interface __AssemblyName$views {
|
|
|
849
889
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
850
890
|
}
|
|
851
891
|
|
|
852
|
-
export interface AssemblyName$instance extends System_Internal.ICloneable$instance, System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
853
|
-
|
|
854
892
|
export type AssemblyName = AssemblyName$instance & __AssemblyName$views;
|
|
855
893
|
|
|
856
894
|
|
|
857
895
|
export interface AssemblyNameProxy$instance extends MarshalByRefObject {
|
|
896
|
+
readonly __tsonic_type_System_Reflection_AssemblyNameProxy: never;
|
|
897
|
+
|
|
858
898
|
GetAssemblyName(assemblyFile: string): AssemblyName;
|
|
859
899
|
}
|
|
860
900
|
|
|
@@ -867,6 +907,8 @@ export const AssemblyNameProxy: {
|
|
|
867
907
|
export type AssemblyNameProxy = AssemblyNameProxy$instance;
|
|
868
908
|
|
|
869
909
|
export interface AssemblyProductAttribute$instance extends Attribute {
|
|
910
|
+
readonly __tsonic_type_System_Reflection_AssemblyProductAttribute: never;
|
|
911
|
+
|
|
870
912
|
readonly Product: string;
|
|
871
913
|
}
|
|
872
914
|
|
|
@@ -879,6 +921,8 @@ export const AssemblyProductAttribute: {
|
|
|
879
921
|
export type AssemblyProductAttribute = AssemblyProductAttribute$instance;
|
|
880
922
|
|
|
881
923
|
export interface AssemblySignatureKeyAttribute$instance extends Attribute {
|
|
924
|
+
readonly __tsonic_type_System_Reflection_AssemblySignatureKeyAttribute: never;
|
|
925
|
+
|
|
882
926
|
readonly Countersignature: string;
|
|
883
927
|
readonly PublicKey: string;
|
|
884
928
|
}
|
|
@@ -892,6 +936,8 @@ export const AssemblySignatureKeyAttribute: {
|
|
|
892
936
|
export type AssemblySignatureKeyAttribute = AssemblySignatureKeyAttribute$instance;
|
|
893
937
|
|
|
894
938
|
export interface AssemblyTitleAttribute$instance extends Attribute {
|
|
939
|
+
readonly __tsonic_type_System_Reflection_AssemblyTitleAttribute: never;
|
|
940
|
+
|
|
895
941
|
readonly Title: string;
|
|
896
942
|
}
|
|
897
943
|
|
|
@@ -904,6 +950,8 @@ export const AssemblyTitleAttribute: {
|
|
|
904
950
|
export type AssemblyTitleAttribute = AssemblyTitleAttribute$instance;
|
|
905
951
|
|
|
906
952
|
export interface AssemblyTrademarkAttribute$instance extends Attribute {
|
|
953
|
+
readonly __tsonic_type_System_Reflection_AssemblyTrademarkAttribute: never;
|
|
954
|
+
|
|
907
955
|
readonly Trademark: string;
|
|
908
956
|
}
|
|
909
957
|
|
|
@@ -916,6 +964,8 @@ export const AssemblyTrademarkAttribute: {
|
|
|
916
964
|
export type AssemblyTrademarkAttribute = AssemblyTrademarkAttribute$instance;
|
|
917
965
|
|
|
918
966
|
export interface AssemblyVersionAttribute$instance extends Attribute {
|
|
967
|
+
readonly __tsonic_type_System_Reflection_AssemblyVersionAttribute: never;
|
|
968
|
+
|
|
919
969
|
readonly Version: string;
|
|
920
970
|
}
|
|
921
971
|
|
|
@@ -928,6 +978,8 @@ export const AssemblyVersionAttribute: {
|
|
|
928
978
|
export type AssemblyVersionAttribute = AssemblyVersionAttribute$instance;
|
|
929
979
|
|
|
930
980
|
export interface Binder$instance {
|
|
981
|
+
readonly __tsonic_type_System_Reflection_Binder: never;
|
|
982
|
+
|
|
931
983
|
BindToField(bindingAttr: BindingFlags, match: FieldInfo[], value: unknown, culture: CultureInfo): FieldInfo;
|
|
932
984
|
BindToMethod(bindingAttr: BindingFlags, match: MethodBase[], args: unknown[], modifiers: ParameterModifier[], culture: CultureInfo, names: string[], state: unknown): MethodBase;
|
|
933
985
|
ChangeType(value: unknown, type: Type, culture: CultureInfo): unknown;
|
|
@@ -944,6 +996,8 @@ export const Binder: (abstract new() => Binder) & {
|
|
|
944
996
|
export type Binder = Binder$instance;
|
|
945
997
|
|
|
946
998
|
export interface ConstructorInfo$instance extends MethodBase$instance {
|
|
999
|
+
readonly __tsonic_type_System_Reflection_ConstructorInfo: never;
|
|
1000
|
+
|
|
947
1001
|
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
948
1002
|
|
|
949
1003
|
readonly MemberType: MemberTypes;
|
|
@@ -971,6 +1025,8 @@ export type ConstructorInfo = ConstructorInfo$instance & __ConstructorInfo$views
|
|
|
971
1025
|
|
|
972
1026
|
|
|
973
1027
|
export interface ConstructorInvoker$instance {
|
|
1028
|
+
readonly __tsonic_type_System_Reflection_ConstructorInvoker: never;
|
|
1029
|
+
|
|
974
1030
|
Invoke(): unknown;
|
|
975
1031
|
Invoke(arg1: unknown): unknown;
|
|
976
1032
|
Invoke(arg1: unknown, arg2: unknown): unknown;
|
|
@@ -988,6 +1044,8 @@ export const ConstructorInvoker: {
|
|
|
988
1044
|
export type ConstructorInvoker = ConstructorInvoker$instance;
|
|
989
1045
|
|
|
990
1046
|
export interface CustomAttributeData$instance {
|
|
1047
|
+
readonly __tsonic_type_System_Reflection_CustomAttributeData: never;
|
|
1048
|
+
|
|
991
1049
|
readonly AttributeType: Type;
|
|
992
1050
|
readonly Constructor: ConstructorInfo;
|
|
993
1051
|
readonly ConstructorArguments: IList_1<CustomAttributeTypedArgument>;
|
|
@@ -1007,6 +1065,8 @@ export const CustomAttributeData: (abstract new() => CustomAttributeData) & {
|
|
|
1007
1065
|
export type CustomAttributeData = CustomAttributeData$instance;
|
|
1008
1066
|
|
|
1009
1067
|
export interface CustomAttributeFormatException$instance extends FormatException {
|
|
1068
|
+
readonly __tsonic_type_System_Reflection_CustomAttributeFormatException: never;
|
|
1069
|
+
|
|
1010
1070
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1011
1071
|
|
|
1012
1072
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1028,6 +1088,8 @@ export type CustomAttributeFormatException = CustomAttributeFormatException$inst
|
|
|
1028
1088
|
|
|
1029
1089
|
|
|
1030
1090
|
export interface DefaultMemberAttribute$instance extends Attribute {
|
|
1091
|
+
readonly __tsonic_type_System_Reflection_DefaultMemberAttribute: never;
|
|
1092
|
+
|
|
1031
1093
|
readonly MemberName: string;
|
|
1032
1094
|
}
|
|
1033
1095
|
|
|
@@ -1040,6 +1102,8 @@ export const DefaultMemberAttribute: {
|
|
|
1040
1102
|
export type DefaultMemberAttribute = DefaultMemberAttribute$instance;
|
|
1041
1103
|
|
|
1042
1104
|
export interface DispatchProxy$instance {
|
|
1105
|
+
readonly __tsonic_type_System_Reflection_DispatchProxy: never;
|
|
1106
|
+
|
|
1043
1107
|
Invoke(targetMethod: MethodInfo, args: unknown[]): unknown | undefined;
|
|
1044
1108
|
}
|
|
1045
1109
|
|
|
@@ -1053,6 +1117,8 @@ export const DispatchProxy: (abstract new() => DispatchProxy) & {
|
|
|
1053
1117
|
export type DispatchProxy = DispatchProxy$instance;
|
|
1054
1118
|
|
|
1055
1119
|
export interface EventInfo$instance extends MemberInfo$instance {
|
|
1120
|
+
readonly __tsonic_type_System_Reflection_EventInfo: never;
|
|
1121
|
+
|
|
1056
1122
|
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1057
1123
|
|
|
1058
1124
|
readonly AddMethod: MethodInfo | undefined;
|
|
@@ -1093,6 +1159,8 @@ export type EventInfo = EventInfo$instance & __EventInfo$views;
|
|
|
1093
1159
|
|
|
1094
1160
|
|
|
1095
1161
|
export interface ExceptionHandlingClause$instance {
|
|
1162
|
+
readonly __tsonic_type_System_Reflection_ExceptionHandlingClause: never;
|
|
1163
|
+
|
|
1096
1164
|
readonly CatchType: Type | undefined;
|
|
1097
1165
|
readonly FilterOffset: int;
|
|
1098
1166
|
readonly Flags: ExceptionHandlingClauseOptions;
|
|
@@ -1111,6 +1179,8 @@ export const ExceptionHandlingClause: (abstract new() => ExceptionHandlingClause
|
|
|
1111
1179
|
export type ExceptionHandlingClause = ExceptionHandlingClause$instance;
|
|
1112
1180
|
|
|
1113
1181
|
export interface FieldInfo$instance extends MemberInfo$instance {
|
|
1182
|
+
readonly __tsonic_type_System_Reflection_FieldInfo: never;
|
|
1183
|
+
|
|
1114
1184
|
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1115
1185
|
|
|
1116
1186
|
readonly Attributes: FieldAttributes;
|
|
@@ -1163,6 +1233,8 @@ export type FieldInfo = FieldInfo$instance & __FieldInfo$views;
|
|
|
1163
1233
|
|
|
1164
1234
|
|
|
1165
1235
|
export interface InvalidFilterCriteriaException$instance extends ApplicationException {
|
|
1236
|
+
readonly __tsonic_type_System_Reflection_InvalidFilterCriteriaException: never;
|
|
1237
|
+
|
|
1166
1238
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1167
1239
|
|
|
1168
1240
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1184,6 +1256,8 @@ export type InvalidFilterCriteriaException = InvalidFilterCriteriaException$inst
|
|
|
1184
1256
|
|
|
1185
1257
|
|
|
1186
1258
|
export interface LocalVariableInfo$instance {
|
|
1259
|
+
readonly __tsonic_type_System_Reflection_LocalVariableInfo: never;
|
|
1260
|
+
|
|
1187
1261
|
readonly IsPinned: boolean;
|
|
1188
1262
|
readonly LocalIndex: int;
|
|
1189
1263
|
readonly LocalType: Type;
|
|
@@ -1198,6 +1272,8 @@ export const LocalVariableInfo: (abstract new() => LocalVariableInfo) & {
|
|
|
1198
1272
|
export type LocalVariableInfo = LocalVariableInfo$instance;
|
|
1199
1273
|
|
|
1200
1274
|
export interface ManifestResourceInfo$instance {
|
|
1275
|
+
readonly __tsonic_type_System_Reflection_ManifestResourceInfo: never;
|
|
1276
|
+
|
|
1201
1277
|
readonly FileName: string | undefined;
|
|
1202
1278
|
readonly ReferencedAssembly: Assembly | undefined;
|
|
1203
1279
|
readonly ResourceLocation: ResourceLocation;
|
|
@@ -1211,7 +1287,9 @@ export const ManifestResourceInfo: {
|
|
|
1211
1287
|
|
|
1212
1288
|
export type ManifestResourceInfo = ManifestResourceInfo$instance;
|
|
1213
1289
|
|
|
1214
|
-
export interface MemberInfo$instance {
|
|
1290
|
+
export interface MemberInfo$instance extends ICustomAttributeProvider$instance {
|
|
1291
|
+
readonly __tsonic_type_System_Reflection_MemberInfo: never;
|
|
1292
|
+
|
|
1215
1293
|
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1216
1294
|
|
|
1217
1295
|
readonly CustomAttributes: IEnumerable_1<CustomAttributeData>;
|
|
@@ -1240,12 +1318,12 @@ export interface __MemberInfo$views {
|
|
|
1240
1318
|
As_ICustomAttributeProvider(): ICustomAttributeProvider$instance;
|
|
1241
1319
|
}
|
|
1242
1320
|
|
|
1243
|
-
export interface MemberInfo$instance extends ICustomAttributeProvider$instance {}
|
|
1244
|
-
|
|
1245
1321
|
export type MemberInfo = MemberInfo$instance & __MemberInfo$views;
|
|
1246
1322
|
|
|
1247
1323
|
|
|
1248
1324
|
export interface MethodBase$instance extends MemberInfo$instance {
|
|
1325
|
+
readonly __tsonic_type_System_Reflection_MethodBase: never;
|
|
1326
|
+
|
|
1249
1327
|
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1250
1328
|
|
|
1251
1329
|
readonly Attributes: MethodAttributes;
|
|
@@ -1301,6 +1379,8 @@ export type MethodBase = MethodBase$instance & __MethodBase$views;
|
|
|
1301
1379
|
|
|
1302
1380
|
|
|
1303
1381
|
export interface MethodBody$instance {
|
|
1382
|
+
readonly __tsonic_type_System_Reflection_MethodBody: never;
|
|
1383
|
+
|
|
1304
1384
|
readonly ExceptionHandlingClauses: IList_1<ExceptionHandlingClause>;
|
|
1305
1385
|
readonly InitLocals: boolean;
|
|
1306
1386
|
readonly LocalSignatureMetadataToken: int;
|
|
@@ -1317,6 +1397,8 @@ export const MethodBody: (abstract new() => MethodBody) & {
|
|
|
1317
1397
|
export type MethodBody = MethodBody$instance;
|
|
1318
1398
|
|
|
1319
1399
|
export interface MethodInfo$instance extends MethodBase$instance {
|
|
1400
|
+
readonly __tsonic_type_System_Reflection_MethodInfo: never;
|
|
1401
|
+
|
|
1320
1402
|
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1321
1403
|
|
|
1322
1404
|
readonly MemberType: MemberTypes;
|
|
@@ -1351,6 +1433,8 @@ export type MethodInfo = MethodInfo$instance & __MethodInfo$views;
|
|
|
1351
1433
|
|
|
1352
1434
|
|
|
1353
1435
|
export interface MethodInvoker$instance {
|
|
1436
|
+
readonly __tsonic_type_System_Reflection_MethodInvoker: never;
|
|
1437
|
+
|
|
1354
1438
|
Invoke(obj: unknown): unknown | undefined;
|
|
1355
1439
|
Invoke(obj: unknown, arg1: unknown): unknown | undefined;
|
|
1356
1440
|
Invoke(obj: unknown, arg1: unknown, arg2: unknown): unknown | undefined;
|
|
@@ -1367,7 +1451,9 @@ export const MethodInvoker: {
|
|
|
1367
1451
|
|
|
1368
1452
|
export type MethodInvoker = MethodInvoker$instance;
|
|
1369
1453
|
|
|
1370
|
-
export interface Missing$instance {
|
|
1454
|
+
export interface Missing$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1455
|
+
readonly __tsonic_type_System_Reflection_Missing: never;
|
|
1456
|
+
|
|
1371
1457
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1372
1458
|
|
|
1373
1459
|
}
|
|
@@ -1382,12 +1468,12 @@ export interface __Missing$views {
|
|
|
1382
1468
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
1383
1469
|
}
|
|
1384
1470
|
|
|
1385
|
-
export interface Missing$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1386
|
-
|
|
1387
1471
|
export type Missing = Missing$instance & __Missing$views;
|
|
1388
1472
|
|
|
1389
1473
|
|
|
1390
|
-
export interface Module$instance {
|
|
1474
|
+
export interface Module$instance extends ICustomAttributeProvider$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1475
|
+
readonly __tsonic_type_System_Reflection_Module: never;
|
|
1476
|
+
|
|
1391
1477
|
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1392
1478
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1393
1479
|
|
|
@@ -1449,12 +1535,12 @@ export interface __Module$views {
|
|
|
1449
1535
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
1450
1536
|
}
|
|
1451
1537
|
|
|
1452
|
-
export interface Module$instance extends ICustomAttributeProvider$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1453
|
-
|
|
1454
1538
|
export type Module = Module$instance & __Module$views;
|
|
1455
1539
|
|
|
1456
1540
|
|
|
1457
1541
|
export interface NullabilityInfo$instance {
|
|
1542
|
+
readonly __tsonic_type_System_Reflection_NullabilityInfo: never;
|
|
1543
|
+
|
|
1458
1544
|
readonly ElementType: NullabilityInfo | undefined;
|
|
1459
1545
|
readonly GenericTypeArguments: NullabilityInfo[];
|
|
1460
1546
|
ReadState: NullabilityState;
|
|
@@ -1470,6 +1556,8 @@ export const NullabilityInfo: {
|
|
|
1470
1556
|
export type NullabilityInfo = NullabilityInfo$instance;
|
|
1471
1557
|
|
|
1472
1558
|
export interface NullabilityInfoContext$instance {
|
|
1559
|
+
readonly __tsonic_type_System_Reflection_NullabilityInfoContext: never;
|
|
1560
|
+
|
|
1473
1561
|
Create(parameterInfo: ParameterInfo): NullabilityInfo;
|
|
1474
1562
|
Create(propertyInfo: PropertyInfo): NullabilityInfo;
|
|
1475
1563
|
Create(eventInfo: EventInfo): NullabilityInfo;
|
|
@@ -1485,6 +1573,8 @@ export const NullabilityInfoContext: {
|
|
|
1485
1573
|
export type NullabilityInfoContext = NullabilityInfoContext$instance;
|
|
1486
1574
|
|
|
1487
1575
|
export interface ObfuscateAssemblyAttribute$instance extends Attribute {
|
|
1576
|
+
readonly __tsonic_type_System_Reflection_ObfuscateAssemblyAttribute: never;
|
|
1577
|
+
|
|
1488
1578
|
readonly AssemblyIsPrivate: boolean;
|
|
1489
1579
|
StripAfterObfuscation: boolean;
|
|
1490
1580
|
}
|
|
@@ -1498,6 +1588,8 @@ export const ObfuscateAssemblyAttribute: {
|
|
|
1498
1588
|
export type ObfuscateAssemblyAttribute = ObfuscateAssemblyAttribute$instance;
|
|
1499
1589
|
|
|
1500
1590
|
export interface ObfuscationAttribute$instance extends Attribute {
|
|
1591
|
+
readonly __tsonic_type_System_Reflection_ObfuscationAttribute: never;
|
|
1592
|
+
|
|
1501
1593
|
ApplyToMembers: boolean;
|
|
1502
1594
|
Exclude: boolean;
|
|
1503
1595
|
get Feature(): string | undefined;
|
|
@@ -1513,7 +1605,9 @@ export const ObfuscationAttribute: {
|
|
|
1513
1605
|
|
|
1514
1606
|
export type ObfuscationAttribute = ObfuscationAttribute$instance;
|
|
1515
1607
|
|
|
1516
|
-
export interface ParameterInfo$instance {
|
|
1608
|
+
export interface ParameterInfo$instance extends ICustomAttributeProvider$instance, System_Runtime_Serialization_Internal.IObjectReference$instance {
|
|
1609
|
+
readonly __tsonic_type_System_Reflection_ParameterInfo: never;
|
|
1610
|
+
|
|
1517
1611
|
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1518
1612
|
readonly __tsonic_iface_System_Runtime_Serialization_IObjectReference: never;
|
|
1519
1613
|
|
|
@@ -1553,12 +1647,12 @@ export interface __ParameterInfo$views {
|
|
|
1553
1647
|
As_IObjectReference(): System_Runtime_Serialization_Internal.IObjectReference$instance;
|
|
1554
1648
|
}
|
|
1555
1649
|
|
|
1556
|
-
export interface ParameterInfo$instance extends ICustomAttributeProvider$instance, System_Runtime_Serialization_Internal.IObjectReference$instance {}
|
|
1557
|
-
|
|
1558
1650
|
export type ParameterInfo = ParameterInfo$instance & __ParameterInfo$views;
|
|
1559
1651
|
|
|
1560
1652
|
|
|
1561
|
-
export interface Pointer$instance {
|
|
1653
|
+
export interface Pointer$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1654
|
+
readonly __tsonic_type_System_Reflection_Pointer: never;
|
|
1655
|
+
|
|
1562
1656
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1563
1657
|
|
|
1564
1658
|
Equals(obj: unknown): boolean;
|
|
@@ -1576,12 +1670,12 @@ export interface __Pointer$views {
|
|
|
1576
1670
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
1577
1671
|
}
|
|
1578
1672
|
|
|
1579
|
-
export interface Pointer$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1580
|
-
|
|
1581
1673
|
export type Pointer = Pointer$instance & __Pointer$views;
|
|
1582
1674
|
|
|
1583
1675
|
|
|
1584
1676
|
export interface PropertyInfo$instance extends MemberInfo$instance {
|
|
1677
|
+
readonly __tsonic_type_System_Reflection_PropertyInfo: never;
|
|
1678
|
+
|
|
1585
1679
|
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1586
1680
|
|
|
1587
1681
|
readonly Attributes: PropertyAttributes;
|
|
@@ -1630,6 +1724,8 @@ export type PropertyInfo = PropertyInfo$instance & __PropertyInfo$views;
|
|
|
1630
1724
|
|
|
1631
1725
|
|
|
1632
1726
|
export interface ReflectionContext$instance {
|
|
1727
|
+
readonly __tsonic_type_System_Reflection_ReflectionContext: never;
|
|
1728
|
+
|
|
1633
1729
|
GetTypeForObject(value: unknown): TypeInfo;
|
|
1634
1730
|
MapAssembly(assembly: Assembly): Assembly;
|
|
1635
1731
|
MapType(type: TypeInfo): TypeInfo;
|
|
@@ -1643,6 +1739,8 @@ export const ReflectionContext: (abstract new() => ReflectionContext) & {
|
|
|
1643
1739
|
export type ReflectionContext = ReflectionContext$instance;
|
|
1644
1740
|
|
|
1645
1741
|
export interface ReflectionTypeLoadException$instance extends SystemException {
|
|
1742
|
+
readonly __tsonic_type_System_Reflection_ReflectionTypeLoadException: never;
|
|
1743
|
+
|
|
1646
1744
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1647
1745
|
|
|
1648
1746
|
readonly LoaderExceptions: (Exception | undefined)[];
|
|
@@ -1666,7 +1764,9 @@ export interface __ReflectionTypeLoadException$views {
|
|
|
1666
1764
|
export type ReflectionTypeLoadException = ReflectionTypeLoadException$instance & __ReflectionTypeLoadException$views;
|
|
1667
1765
|
|
|
1668
1766
|
|
|
1669
|
-
export interface StrongNameKeyPair$instance {
|
|
1767
|
+
export interface StrongNameKeyPair$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1768
|
+
readonly __tsonic_type_System_Reflection_StrongNameKeyPair: never;
|
|
1769
|
+
|
|
1670
1770
|
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
1671
1771
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1672
1772
|
|
|
@@ -1686,12 +1786,12 @@ export interface __StrongNameKeyPair$views {
|
|
|
1686
1786
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
1687
1787
|
}
|
|
1688
1788
|
|
|
1689
|
-
export interface StrongNameKeyPair$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1690
|
-
|
|
1691
1789
|
export type StrongNameKeyPair = StrongNameKeyPair$instance & __StrongNameKeyPair$views;
|
|
1692
1790
|
|
|
1693
1791
|
|
|
1694
1792
|
export interface TargetException$instance extends ApplicationException {
|
|
1793
|
+
readonly __tsonic_type_System_Reflection_TargetException: never;
|
|
1794
|
+
|
|
1695
1795
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1696
1796
|
|
|
1697
1797
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1713,6 +1813,8 @@ export type TargetException = TargetException$instance & __TargetException$views
|
|
|
1713
1813
|
|
|
1714
1814
|
|
|
1715
1815
|
export interface TargetInvocationException$instance extends ApplicationException {
|
|
1816
|
+
readonly __tsonic_type_System_Reflection_TargetInvocationException: never;
|
|
1817
|
+
|
|
1716
1818
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1717
1819
|
|
|
1718
1820
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1733,6 +1835,8 @@ export type TargetInvocationException = TargetInvocationException$instance & __T
|
|
|
1733
1835
|
|
|
1734
1836
|
|
|
1735
1837
|
export interface TargetParameterCountException$instance extends ApplicationException {
|
|
1838
|
+
readonly __tsonic_type_System_Reflection_TargetParameterCountException: never;
|
|
1839
|
+
|
|
1736
1840
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1737
1841
|
|
|
1738
1842
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1753,7 +1857,9 @@ export interface __TargetParameterCountException$views {
|
|
|
1753
1857
|
export type TargetParameterCountException = TargetParameterCountException$instance & __TargetParameterCountException$views;
|
|
1754
1858
|
|
|
1755
1859
|
|
|
1756
|
-
export interface TypeDelegator$instance extends TypeInfo$instance {
|
|
1860
|
+
export interface TypeDelegator$instance extends TypeInfo$instance, IReflectableType$instance {
|
|
1861
|
+
readonly __tsonic_type_System_Reflection_TypeDelegator: never;
|
|
1862
|
+
|
|
1757
1863
|
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1758
1864
|
readonly __tsonic_iface_System_Reflection_IReflect: never;
|
|
1759
1865
|
readonly __tsonic_iface_System_Reflection_IReflectableType: never;
|
|
@@ -1866,12 +1972,12 @@ export interface __TypeDelegator$views {
|
|
|
1866
1972
|
As_IReflectableType(): IReflectableType$instance;
|
|
1867
1973
|
}
|
|
1868
1974
|
|
|
1869
|
-
export interface TypeDelegator$instance extends IReflectableType$instance {}
|
|
1870
|
-
|
|
1871
1975
|
export type TypeDelegator = TypeDelegator$instance & __TypeDelegator$views;
|
|
1872
1976
|
|
|
1873
1977
|
|
|
1874
|
-
export interface TypeInfo$instance extends Type {
|
|
1978
|
+
export interface TypeInfo$instance extends Type, IReflectableType$instance {
|
|
1979
|
+
readonly __tsonic_type_System_Reflection_TypeInfo: never;
|
|
1980
|
+
|
|
1875
1981
|
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1876
1982
|
readonly __tsonic_iface_System_Reflection_IReflect: never;
|
|
1877
1983
|
readonly __tsonic_iface_System_Reflection_IReflectableType: never;
|
|
@@ -1944,8 +2050,6 @@ export interface __TypeInfo$views {
|
|
|
1944
2050
|
As_IReflectableType(): IReflectableType$instance;
|
|
1945
2051
|
}
|
|
1946
2052
|
|
|
1947
|
-
export interface TypeInfo$instance extends IReflectableType$instance {}
|
|
1948
|
-
|
|
1949
2053
|
export type TypeInfo = TypeInfo$instance & __TypeInfo$views;
|
|
1950
2054
|
|
|
1951
2055
|
|