@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
|
@@ -629,6 +629,8 @@ export type UnhandledExceptionEventHandler = (sender: unknown, e: UnhandledExcep
|
|
|
629
629
|
|
|
630
630
|
|
|
631
631
|
export interface IAsyncDisposable$instance {
|
|
632
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
633
|
+
|
|
632
634
|
DisposeAsync(): ValueTask;
|
|
633
635
|
}
|
|
634
636
|
|
|
@@ -636,6 +638,8 @@ export interface IAsyncDisposable$instance {
|
|
|
636
638
|
export type IAsyncDisposable = IAsyncDisposable$instance;
|
|
637
639
|
|
|
638
640
|
export interface IAsyncResult$instance {
|
|
641
|
+
readonly __tsonic_iface_System_IAsyncResult: never;
|
|
642
|
+
|
|
639
643
|
readonly IsCompleted: boolean;
|
|
640
644
|
readonly AsyncWaitHandle: WaitHandle;
|
|
641
645
|
readonly AsyncState: unknown | undefined;
|
|
@@ -646,6 +650,8 @@ export interface IAsyncResult$instance {
|
|
|
646
650
|
export type IAsyncResult = IAsyncResult$instance;
|
|
647
651
|
|
|
648
652
|
export interface ICloneable$instance {
|
|
653
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
654
|
+
|
|
649
655
|
Clone(): unknown;
|
|
650
656
|
}
|
|
651
657
|
|
|
@@ -653,6 +659,8 @@ export interface ICloneable$instance {
|
|
|
653
659
|
export type ICloneable = ICloneable$instance;
|
|
654
660
|
|
|
655
661
|
export interface IComparable$instance {
|
|
662
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
663
|
+
|
|
656
664
|
CompareTo(obj: unknown): int;
|
|
657
665
|
}
|
|
658
666
|
|
|
@@ -660,6 +668,8 @@ export interface IComparable$instance {
|
|
|
660
668
|
export type IComparable = IComparable$instance;
|
|
661
669
|
|
|
662
670
|
export interface IComparable_1$instance<T> {
|
|
671
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
672
|
+
|
|
663
673
|
CompareTo(other: T): int;
|
|
664
674
|
}
|
|
665
675
|
|
|
@@ -667,6 +677,8 @@ export interface IComparable_1$instance<T> {
|
|
|
667
677
|
export type IComparable_1<T> = IComparable_1$instance<T>;
|
|
668
678
|
|
|
669
679
|
export interface IConvertible$instance {
|
|
680
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
681
|
+
|
|
670
682
|
GetTypeCode(): TypeCode;
|
|
671
683
|
ToBoolean(provider: IFormatProvider): boolean;
|
|
672
684
|
ToByte(provider: IFormatProvider): byte;
|
|
@@ -690,6 +702,8 @@ export interface IConvertible$instance {
|
|
|
690
702
|
export type IConvertible = IConvertible$instance;
|
|
691
703
|
|
|
692
704
|
export interface ICustomFormatter$instance {
|
|
705
|
+
readonly __tsonic_iface_System_ICustomFormatter: never;
|
|
706
|
+
|
|
693
707
|
Format(format: string, arg: unknown, formatProvider: IFormatProvider): string;
|
|
694
708
|
}
|
|
695
709
|
|
|
@@ -697,6 +711,8 @@ export interface ICustomFormatter$instance {
|
|
|
697
711
|
export type ICustomFormatter = ICustomFormatter$instance;
|
|
698
712
|
|
|
699
713
|
export interface IDisposable$instance {
|
|
714
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
715
|
+
|
|
700
716
|
Dispose(): void;
|
|
701
717
|
}
|
|
702
718
|
|
|
@@ -704,6 +720,8 @@ export interface IDisposable$instance {
|
|
|
704
720
|
export type IDisposable = IDisposable$instance;
|
|
705
721
|
|
|
706
722
|
export interface IEquatable_1$instance<T> {
|
|
723
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
724
|
+
|
|
707
725
|
Equals(other: T): boolean;
|
|
708
726
|
}
|
|
709
727
|
|
|
@@ -711,6 +729,8 @@ export interface IEquatable_1$instance<T> {
|
|
|
711
729
|
export type IEquatable_1<T> = IEquatable_1$instance<T>;
|
|
712
730
|
|
|
713
731
|
export interface IFormatProvider$instance {
|
|
732
|
+
readonly __tsonic_iface_System_IFormatProvider: never;
|
|
733
|
+
|
|
714
734
|
GetFormat(formatType: Type): unknown | undefined;
|
|
715
735
|
}
|
|
716
736
|
|
|
@@ -718,6 +738,8 @@ export interface IFormatProvider$instance {
|
|
|
718
738
|
export type IFormatProvider = IFormatProvider$instance;
|
|
719
739
|
|
|
720
740
|
export interface IFormattable$instance {
|
|
741
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
742
|
+
|
|
721
743
|
ToString(format: string, formatProvider: IFormatProvider): string;
|
|
722
744
|
}
|
|
723
745
|
|
|
@@ -725,6 +747,8 @@ export interface IFormattable$instance {
|
|
|
725
747
|
export type IFormattable = IFormattable$instance;
|
|
726
748
|
|
|
727
749
|
export interface IObservable_1$instance<T> {
|
|
750
|
+
readonly __tsonic_iface_System_IObservable_1: never;
|
|
751
|
+
|
|
728
752
|
Subscribe(observer: IObserver_1<T>): IDisposable;
|
|
729
753
|
}
|
|
730
754
|
|
|
@@ -732,6 +756,8 @@ export interface IObservable_1$instance<T> {
|
|
|
732
756
|
export type IObservable_1<T> = IObservable_1$instance<T>;
|
|
733
757
|
|
|
734
758
|
export interface IObserver_1$instance<T> {
|
|
759
|
+
readonly __tsonic_iface_System_IObserver_1: never;
|
|
760
|
+
|
|
735
761
|
OnCompleted(): void;
|
|
736
762
|
OnError(error: Exception): void;
|
|
737
763
|
OnNext(value: T): void;
|
|
@@ -741,12 +767,16 @@ export interface IObserver_1$instance<T> {
|
|
|
741
767
|
export type IObserver_1<T> = IObserver_1$instance<T>;
|
|
742
768
|
|
|
743
769
|
export interface IParsable_1$instance<TSelf extends IParsable_1<TSelf>> {
|
|
770
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
771
|
+
|
|
744
772
|
}
|
|
745
773
|
|
|
746
774
|
|
|
747
775
|
export type IParsable_1<TSelf extends IParsable_1<TSelf>> = IParsable_1$instance<TSelf>;
|
|
748
776
|
|
|
749
777
|
export interface IProgress_1$instance<T> {
|
|
778
|
+
readonly __tsonic_iface_System_IProgress_1: never;
|
|
779
|
+
|
|
750
780
|
Report(value: T): void;
|
|
751
781
|
}
|
|
752
782
|
|
|
@@ -754,6 +784,8 @@ export interface IProgress_1$instance<T> {
|
|
|
754
784
|
export type IProgress_1<T> = IProgress_1$instance<T>;
|
|
755
785
|
|
|
756
786
|
export interface IServiceProvider$instance {
|
|
787
|
+
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
788
|
+
|
|
757
789
|
GetService(serviceType: Type): unknown | undefined;
|
|
758
790
|
}
|
|
759
791
|
|
|
@@ -761,6 +793,8 @@ export interface IServiceProvider$instance {
|
|
|
761
793
|
export type IServiceProvider = IServiceProvider$instance;
|
|
762
794
|
|
|
763
795
|
export interface ISpanFormattable$instance extends IFormattable {
|
|
796
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
797
|
+
|
|
764
798
|
ToString(format: string, formatProvider: IFormatProvider): string;
|
|
765
799
|
TryFormat(destination: Span_1<Char>, charsWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
766
800
|
}
|
|
@@ -771,6 +805,8 @@ export interface ISpanFormattable$instance extends IFormattable$instance {}
|
|
|
771
805
|
export type ISpanFormattable = ISpanFormattable$instance;
|
|
772
806
|
|
|
773
807
|
export interface ISpanParsable_1$instance<TSelf extends ISpanParsable_1<TSelf>> extends IParsable_1<TSelf> {
|
|
808
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
809
|
+
|
|
774
810
|
}
|
|
775
811
|
|
|
776
812
|
|
|
@@ -779,6 +815,8 @@ export interface ISpanParsable_1$instance<TSelf extends ISpanParsable_1<TSelf>>
|
|
|
779
815
|
export type ISpanParsable_1<TSelf extends ISpanParsable_1<TSelf>> = ISpanParsable_1$instance<TSelf>;
|
|
780
816
|
|
|
781
817
|
export interface IUtf8SpanFormattable$instance {
|
|
818
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
819
|
+
|
|
782
820
|
TryFormat(utf8Destination: Span_1<Byte>, bytesWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
783
821
|
}
|
|
784
822
|
|
|
@@ -786,12 +824,16 @@ export interface IUtf8SpanFormattable$instance {
|
|
|
786
824
|
export type IUtf8SpanFormattable = IUtf8SpanFormattable$instance;
|
|
787
825
|
|
|
788
826
|
export interface IUtf8SpanParsable_1$instance<TSelf extends IUtf8SpanParsable_1<TSelf>> {
|
|
827
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
828
|
+
|
|
789
829
|
}
|
|
790
830
|
|
|
791
831
|
|
|
792
832
|
export type IUtf8SpanParsable_1<TSelf extends IUtf8SpanParsable_1<TSelf>> = IUtf8SpanParsable_1$instance<TSelf>;
|
|
793
833
|
|
|
794
834
|
export interface ArgIterator$instance {
|
|
835
|
+
readonly __tsonic_type_System_ArgIterator: never;
|
|
836
|
+
|
|
795
837
|
End(): void;
|
|
796
838
|
Equals(o: unknown): boolean;
|
|
797
839
|
GetHashCode(): int;
|
|
@@ -811,6 +853,15 @@ export const ArgIterator: {
|
|
|
811
853
|
export type ArgIterator = ArgIterator$instance;
|
|
812
854
|
|
|
813
855
|
export interface ArraySegment_1$instance<T> {
|
|
856
|
+
readonly __tsonic_type_System_ArraySegment_1: never;
|
|
857
|
+
|
|
858
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
859
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
860
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
861
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
862
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
863
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
864
|
+
|
|
814
865
|
readonly Array: T[] | undefined;
|
|
815
866
|
readonly Count: int;
|
|
816
867
|
[index: number]: T;
|
|
@@ -847,6 +898,12 @@ export type ArraySegment_1<T> = ArraySegment_1$instance<T> & __ArraySegment_1$vi
|
|
|
847
898
|
|
|
848
899
|
|
|
849
900
|
export interface ArraySegment_1_Enumerator$instance<T> extends IDisposable {
|
|
901
|
+
readonly __tsonic_type_System_ArraySegment_1_Enumerator: never;
|
|
902
|
+
|
|
903
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
904
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
905
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
906
|
+
|
|
850
907
|
readonly Current: T;
|
|
851
908
|
Dispose(): void;
|
|
852
909
|
MoveNext(): boolean;
|
|
@@ -868,6 +925,15 @@ export type ArraySegment_1_Enumerator<T> = ArraySegment_1_Enumerator$instance<T>
|
|
|
868
925
|
|
|
869
926
|
|
|
870
927
|
export interface Boolean$instance {
|
|
928
|
+
readonly __tsonic_type_System_Boolean: never;
|
|
929
|
+
|
|
930
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
931
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
932
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
933
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
934
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
935
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
936
|
+
|
|
871
937
|
CompareTo(obj: unknown): int;
|
|
872
938
|
CompareTo(value: boolean): int;
|
|
873
939
|
Equals(obj: unknown): boolean;
|
|
@@ -904,12 +970,44 @@ export interface __Boolean$views {
|
|
|
904
970
|
CompareTo(obj: unknown): int;
|
|
905
971
|
}
|
|
906
972
|
|
|
907
|
-
export interface Boolean$instance extends ISpanParsable_1$instance<Boolean> {}
|
|
908
|
-
|
|
909
973
|
export type Boolean = boolean | (boolean & Boolean$instance & __Boolean$views);
|
|
910
974
|
|
|
911
975
|
|
|
912
976
|
export interface Byte$instance extends IBitwiseOperators_3<Byte, Byte, Byte>, IComparisonOperators_3<Byte, Byte, Boolean>, IEqualityOperators_3<Byte, Byte, Boolean>, IModulusOperators_3<Byte, Byte, Byte>, IAdditionOperators_3<Byte, Byte, Byte>, IDecrementOperators_1<Byte>, IDivisionOperators_3<Byte, Byte, Byte>, IIncrementOperators_1<Byte>, IMultiplyOperators_3<Byte, Byte, Byte>, ISubtractionOperators_3<Byte, Byte, Byte>, IUnaryPlusOperators_2<Byte, Byte>, IUnaryNegationOperators_2<Byte, Byte>, IShiftOperators_3<Byte, Int32, Byte> {
|
|
977
|
+
readonly __tsonic_type_System_Byte: never;
|
|
978
|
+
|
|
979
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
980
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
981
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
982
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
983
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
984
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
985
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
986
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
987
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
988
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
989
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
990
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
991
|
+
readonly __tsonic_iface_System_Numerics_IBinaryInteger_1: never;
|
|
992
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
993
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
994
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
995
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
996
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
997
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
998
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
999
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
1000
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
1001
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
1002
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
1003
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
1004
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
1005
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
1006
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
1007
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
1008
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
1009
|
+
readonly __tsonic_iface_System_Numerics_IUnsignedNumber_1: never;
|
|
1010
|
+
|
|
913
1011
|
CompareTo(value: unknown): int;
|
|
914
1012
|
CompareTo(value: byte): int;
|
|
915
1013
|
Equals(obj: unknown): boolean;
|
|
@@ -996,12 +1094,44 @@ export interface __Byte$views {
|
|
|
996
1094
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
997
1095
|
}
|
|
998
1096
|
|
|
999
|
-
export interface Byte$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Byte> {}
|
|
1000
|
-
|
|
1001
1097
|
export type Byte = number & Byte$instance & __Byte$views;
|
|
1002
1098
|
|
|
1003
1099
|
|
|
1004
1100
|
export interface Char$instance extends IBitwiseOperators_3<Char, Char, Char>, IComparisonOperators_3<Char, Char, Boolean>, IEqualityOperators_3<Char, Char, Boolean>, IModulusOperators_3<Char, Char, Char>, IAdditionOperators_3<Char, Char, Char>, IDecrementOperators_1<Char>, IDivisionOperators_3<Char, Char, Char>, IIncrementOperators_1<Char>, IMultiplyOperators_3<Char, Char, Char>, ISubtractionOperators_3<Char, Char, Char>, IUnaryPlusOperators_2<Char, Char>, IUnaryNegationOperators_2<Char, Char>, IShiftOperators_3<Char, Int32, Char> {
|
|
1101
|
+
readonly __tsonic_type_System_Char: never;
|
|
1102
|
+
|
|
1103
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
1104
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
1105
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
1106
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1107
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
1108
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
1109
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
1110
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
1111
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
1112
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
1113
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
1114
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
1115
|
+
readonly __tsonic_iface_System_Numerics_IBinaryInteger_1: never;
|
|
1116
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
1117
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
1118
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
1119
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
1120
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
1121
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
1122
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
1123
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
1124
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
1125
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
1126
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
1127
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
1128
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
1129
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
1130
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
1131
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
1132
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
1133
|
+
readonly __tsonic_iface_System_Numerics_IUnsignedNumber_1: never;
|
|
1134
|
+
|
|
1005
1135
|
CompareTo(value: unknown): int;
|
|
1006
1136
|
CompareTo(value: char): int;
|
|
1007
1137
|
Equals(obj: unknown): boolean;
|
|
@@ -1106,12 +1236,14 @@ export interface __Char$views {
|
|
|
1106
1236
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
1107
1237
|
}
|
|
1108
1238
|
|
|
1109
|
-
export interface Char$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Char> {}
|
|
1110
|
-
|
|
1111
1239
|
export type Char = string & Char$instance & __Char$views;
|
|
1112
1240
|
|
|
1113
1241
|
|
|
1114
1242
|
export interface ConsoleKeyInfo$instance {
|
|
1243
|
+
readonly __tsonic_type_System_ConsoleKeyInfo: never;
|
|
1244
|
+
|
|
1245
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1246
|
+
|
|
1115
1247
|
readonly Key: ConsoleKey;
|
|
1116
1248
|
readonly KeyChar: char;
|
|
1117
1249
|
readonly Modifiers: ConsoleModifiers;
|
|
@@ -1137,6 +1269,17 @@ export type ConsoleKeyInfo = ConsoleKeyInfo$instance & __ConsoleKeyInfo$views;
|
|
|
1137
1269
|
|
|
1138
1270
|
|
|
1139
1271
|
export interface DateOnly$instance {
|
|
1272
|
+
readonly __tsonic_type_System_DateOnly: never;
|
|
1273
|
+
|
|
1274
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
1275
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
1276
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1277
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
1278
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
1279
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
1280
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
1281
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
1282
|
+
|
|
1140
1283
|
readonly Day: int;
|
|
1141
1284
|
readonly DayNumber: int;
|
|
1142
1285
|
readonly DayOfWeek: DayOfWeek;
|
|
@@ -1217,12 +1360,23 @@ export interface __DateOnly$views {
|
|
|
1217
1360
|
TryFormat(utf8Destination: Span_1<Byte>, bytesWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
1218
1361
|
}
|
|
1219
1362
|
|
|
1220
|
-
export interface DateOnly$instance extends IComparable_1$instance<DateOnly>, ISpanParsable_1$instance<DateOnly> {}
|
|
1221
|
-
|
|
1222
1363
|
export type DateOnly = DateOnly$instance & __DateOnly$views;
|
|
1223
1364
|
|
|
1224
1365
|
|
|
1225
1366
|
export interface DateTime$instance {
|
|
1367
|
+
readonly __tsonic_type_System_DateTime: never;
|
|
1368
|
+
|
|
1369
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
1370
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
1371
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
1372
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1373
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
1374
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
1375
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
1376
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
1377
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
1378
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1379
|
+
|
|
1226
1380
|
readonly Date: DateTime;
|
|
1227
1381
|
readonly Day: int;
|
|
1228
1382
|
readonly DayOfWeek: DayOfWeek;
|
|
@@ -1356,12 +1510,23 @@ export interface __DateTime$views {
|
|
|
1356
1510
|
TryFormat(utf8Destination: Span_1<Byte>, bytesWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
1357
1511
|
}
|
|
1358
1512
|
|
|
1359
|
-
export interface DateTime$instance extends IComparable_1$instance<DateTime>, ISpanParsable_1$instance<DateTime>, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1360
|
-
|
|
1361
1513
|
export type DateTime = DateTime$instance & __DateTime$views;
|
|
1362
1514
|
|
|
1363
1515
|
|
|
1364
1516
|
export interface DateTimeOffset$instance {
|
|
1517
|
+
readonly __tsonic_type_System_DateTimeOffset: never;
|
|
1518
|
+
|
|
1519
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
1520
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
1521
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1522
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
1523
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
1524
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
1525
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
1526
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
1527
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
1528
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1529
|
+
|
|
1365
1530
|
readonly Date: DateTime;
|
|
1366
1531
|
readonly DateTime: DateTime;
|
|
1367
1532
|
readonly Day: int;
|
|
@@ -1476,12 +1641,44 @@ export interface __DateTimeOffset$views {
|
|
|
1476
1641
|
TryFormat(utf8Destination: Span_1<Byte>, bytesWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
1477
1642
|
}
|
|
1478
1643
|
|
|
1479
|
-
export interface DateTimeOffset$instance extends IComparable_1$instance<DateTimeOffset>, ISpanParsable_1$instance<DateTimeOffset>, System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1480
|
-
|
|
1481
1644
|
export type DateTimeOffset = DateTimeOffset$instance & __DateTimeOffset$views;
|
|
1482
1645
|
|
|
1483
1646
|
|
|
1484
1647
|
export interface Decimal$instance extends IAdditionOperators_3<Decimal, Decimal, Decimal>, IDecrementOperators_1<Decimal>, IDivisionOperators_3<Decimal, Decimal, Decimal>, IEqualityOperators_3<Decimal, Decimal, Boolean>, IIncrementOperators_1<Decimal>, IMultiplyOperators_3<Decimal, Decimal, Decimal>, ISubtractionOperators_3<Decimal, Decimal, Decimal>, IUnaryPlusOperators_2<Decimal, Decimal>, IUnaryNegationOperators_2<Decimal, Decimal>, IComparisonOperators_3<Decimal, Decimal, Boolean>, IModulusOperators_3<Decimal, Decimal, Decimal> {
|
|
1648
|
+
readonly __tsonic_type_System_Decimal: never;
|
|
1649
|
+
|
|
1650
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
1651
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
1652
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
1653
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1654
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
1655
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
1656
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
1657
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
1658
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
1659
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
1660
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
1661
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
1662
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
1663
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
1664
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
1665
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
1666
|
+
readonly __tsonic_iface_System_Numerics_IFloatingPointConstants_1: never;
|
|
1667
|
+
readonly __tsonic_iface_System_Numerics_IFloatingPoint_1: never;
|
|
1668
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
1669
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
1670
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
1671
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
1672
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
1673
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
1674
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
1675
|
+
readonly __tsonic_iface_System_Numerics_ISignedNumber_1: never;
|
|
1676
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
1677
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
1678
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
1679
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
1680
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1681
|
+
|
|
1485
1682
|
readonly Scale: byte;
|
|
1486
1683
|
CompareTo(value: unknown): int;
|
|
1487
1684
|
CompareTo(value: decimal): int;
|
|
@@ -1615,12 +1812,12 @@ export interface __Decimal$views {
|
|
|
1615
1812
|
WriteExponentBigEndian(destination: Span_1<Byte>): int;
|
|
1616
1813
|
}
|
|
1617
1814
|
|
|
1618
|
-
export interface Decimal$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Decimal>, System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1619
|
-
|
|
1620
1815
|
export type Decimal = number & Decimal$instance & __Decimal$views;
|
|
1621
1816
|
|
|
1622
1817
|
|
|
1623
1818
|
export interface Delegate_InvocationListEnumerator_1$instance<TDelegate extends Function> {
|
|
1819
|
+
readonly __tsonic_type_System_Delegate_InvocationListEnumerator_1: never;
|
|
1820
|
+
|
|
1624
1821
|
readonly Current: TDelegate;
|
|
1625
1822
|
GetEnumerator(): Delegate_InvocationListEnumerator_1<TDelegate>;
|
|
1626
1823
|
MoveNext(): boolean;
|
|
@@ -1635,6 +1832,48 @@ export const Delegate_InvocationListEnumerator_1: {
|
|
|
1635
1832
|
export type Delegate_InvocationListEnumerator_1<TDelegate extends Function> = Delegate_InvocationListEnumerator_1$instance<TDelegate>;
|
|
1636
1833
|
|
|
1637
1834
|
export interface Double$instance extends IBitwiseOperators_3<Double, Double, Double>, IComparisonOperators_3<Double, Double, Boolean>, IEqualityOperators_3<Double, Double, Boolean>, IModulusOperators_3<Double, Double, Double>, IAdditionOperators_3<Double, Double, Double>, IDecrementOperators_1<Double>, IDivisionOperators_3<Double, Double, Double>, IIncrementOperators_1<Double>, IMultiplyOperators_3<Double, Double, Double>, ISubtractionOperators_3<Double, Double, Double>, IUnaryPlusOperators_2<Double, Double>, IUnaryNegationOperators_2<Double, Double> {
|
|
1835
|
+
readonly __tsonic_type_System_Double: never;
|
|
1836
|
+
|
|
1837
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
1838
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
1839
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
1840
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1841
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
1842
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
1843
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
1844
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
1845
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
1846
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
1847
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
1848
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
1849
|
+
readonly __tsonic_iface_System_Numerics_IBinaryFloatingPointIeee754_1: never;
|
|
1850
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
1851
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
1852
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
1853
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
1854
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
1855
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
1856
|
+
readonly __tsonic_iface_System_Numerics_IExponentialFunctions_1: never;
|
|
1857
|
+
readonly __tsonic_iface_System_Numerics_IFloatingPointConstants_1: never;
|
|
1858
|
+
readonly __tsonic_iface_System_Numerics_IFloatingPointIeee754_1: never;
|
|
1859
|
+
readonly __tsonic_iface_System_Numerics_IFloatingPoint_1: never;
|
|
1860
|
+
readonly __tsonic_iface_System_Numerics_IHyperbolicFunctions_1: never;
|
|
1861
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
1862
|
+
readonly __tsonic_iface_System_Numerics_ILogarithmicFunctions_1: never;
|
|
1863
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
1864
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
1865
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
1866
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
1867
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
1868
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
1869
|
+
readonly __tsonic_iface_System_Numerics_IPowerFunctions_1: never;
|
|
1870
|
+
readonly __tsonic_iface_System_Numerics_IRootFunctions_1: never;
|
|
1871
|
+
readonly __tsonic_iface_System_Numerics_ISignedNumber_1: never;
|
|
1872
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
1873
|
+
readonly __tsonic_iface_System_Numerics_ITrigonometricFunctions_1: never;
|
|
1874
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
1875
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
1876
|
+
|
|
1638
1877
|
CompareTo(value: unknown): int;
|
|
1639
1878
|
CompareTo(value: double): int;
|
|
1640
1879
|
Equals(obj: unknown): boolean;
|
|
@@ -1808,12 +2047,12 @@ export interface __Double$views {
|
|
|
1808
2047
|
WriteExponentBigEndian(destination: Span_1<Byte>): int;
|
|
1809
2048
|
}
|
|
1810
2049
|
|
|
1811
|
-
export interface Double$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Double> {}
|
|
1812
|
-
|
|
1813
2050
|
export type Double = number & Double$instance & __Double$views;
|
|
1814
2051
|
|
|
1815
2052
|
|
|
1816
2053
|
export interface Environment_ProcessCpuUsage$instance {
|
|
2054
|
+
readonly __tsonic_type_System_Environment_ProcessCpuUsage: never;
|
|
2055
|
+
|
|
1817
2056
|
PrivilegedTime: TimeSpan;
|
|
1818
2057
|
readonly TotalTime: TimeSpan;
|
|
1819
2058
|
UserTime: TimeSpan;
|
|
@@ -1828,6 +2067,8 @@ export const Environment_ProcessCpuUsage: {
|
|
|
1828
2067
|
export type Environment_ProcessCpuUsage = Environment_ProcessCpuUsage$instance;
|
|
1829
2068
|
|
|
1830
2069
|
export interface GCGenerationInfo$instance {
|
|
2070
|
+
readonly __tsonic_type_System_GCGenerationInfo: never;
|
|
2071
|
+
|
|
1831
2072
|
readonly FragmentationAfterBytes: long;
|
|
1832
2073
|
readonly FragmentationBeforeBytes: long;
|
|
1833
2074
|
readonly SizeAfterBytes: long;
|
|
@@ -1843,6 +2084,8 @@ export const GCGenerationInfo: {
|
|
|
1843
2084
|
export type GCGenerationInfo = GCGenerationInfo$instance;
|
|
1844
2085
|
|
|
1845
2086
|
export interface GCMemoryInfo$instance {
|
|
2087
|
+
readonly __tsonic_type_System_GCMemoryInfo: never;
|
|
2088
|
+
|
|
1846
2089
|
readonly Compacted: boolean;
|
|
1847
2090
|
readonly Concurrent: boolean;
|
|
1848
2091
|
readonly FinalizationPendingCount: long;
|
|
@@ -1870,6 +2113,18 @@ export const GCMemoryInfo: {
|
|
|
1870
2113
|
export type GCMemoryInfo = GCMemoryInfo$instance;
|
|
1871
2114
|
|
|
1872
2115
|
export interface Guid$instance {
|
|
2116
|
+
readonly __tsonic_type_System_Guid: never;
|
|
2117
|
+
|
|
2118
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
2119
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
2120
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2121
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
2122
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
2123
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
2124
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
2125
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
2126
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
2127
|
+
|
|
1873
2128
|
readonly Variant: int;
|
|
1874
2129
|
readonly Version: int;
|
|
1875
2130
|
CompareTo(value: unknown): int;
|
|
@@ -1938,12 +2193,51 @@ export interface __Guid$views {
|
|
|
1938
2193
|
TryFormat(utf8Destination: Span_1<Byte>, bytesWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
1939
2194
|
}
|
|
1940
2195
|
|
|
1941
|
-
export interface Guid$instance extends IComparable_1$instance<Guid>, ISpanParsable_1$instance<Guid> {}
|
|
1942
|
-
|
|
1943
2196
|
export type Guid = Guid$instance & __Guid$views;
|
|
1944
2197
|
|
|
1945
2198
|
|
|
1946
2199
|
export interface Half$instance extends IBitwiseOperators_3<Half, Half, Half>, IComparisonOperators_3<Half, Half, Boolean>, IEqualityOperators_3<Half, Half, Boolean>, IModulusOperators_3<Half, Half, Half>, IAdditionOperators_3<Half, Half, Half>, IDecrementOperators_1<Half>, IDivisionOperators_3<Half, Half, Half>, IIncrementOperators_1<Half>, IMultiplicativeIdentity_2<Half, Half>, IMultiplyOperators_3<Half, Half, Half>, ISubtractionOperators_3<Half, Half, Half>, IUnaryPlusOperators_2<Half, Half>, IUnaryNegationOperators_2<Half, Half> {
|
|
2200
|
+
readonly __tsonic_type_System_Half: never;
|
|
2201
|
+
|
|
2202
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
2203
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
2204
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2205
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
2206
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
2207
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
2208
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
2209
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
2210
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
2211
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
2212
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
2213
|
+
readonly __tsonic_iface_System_Numerics_IBinaryFloatingPointIeee754_1: never;
|
|
2214
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
2215
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
2216
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
2217
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
2218
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
2219
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
2220
|
+
readonly __tsonic_iface_System_Numerics_IExponentialFunctions_1: never;
|
|
2221
|
+
readonly __tsonic_iface_System_Numerics_IFloatingPointConstants_1: never;
|
|
2222
|
+
readonly __tsonic_iface_System_Numerics_IFloatingPointIeee754_1: never;
|
|
2223
|
+
readonly __tsonic_iface_System_Numerics_IFloatingPoint_1: never;
|
|
2224
|
+
readonly __tsonic_iface_System_Numerics_IHyperbolicFunctions_1: never;
|
|
2225
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
2226
|
+
readonly __tsonic_iface_System_Numerics_ILogarithmicFunctions_1: never;
|
|
2227
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
2228
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
2229
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
2230
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
2231
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
2232
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
2233
|
+
readonly __tsonic_iface_System_Numerics_IPowerFunctions_1: never;
|
|
2234
|
+
readonly __tsonic_iface_System_Numerics_IRootFunctions_1: never;
|
|
2235
|
+
readonly __tsonic_iface_System_Numerics_ISignedNumber_1: never;
|
|
2236
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
2237
|
+
readonly __tsonic_iface_System_Numerics_ITrigonometricFunctions_1: never;
|
|
2238
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
2239
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
2240
|
+
|
|
1947
2241
|
CompareTo(obj: unknown): int;
|
|
1948
2242
|
CompareTo(other: half): int;
|
|
1949
2243
|
Equals(obj: unknown): boolean;
|
|
@@ -2119,12 +2413,12 @@ export interface __Half$views {
|
|
|
2119
2413
|
WriteExponentBigEndian(destination: Span_1<Byte>): int;
|
|
2120
2414
|
}
|
|
2121
2415
|
|
|
2122
|
-
export interface Half$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Half> {}
|
|
2123
|
-
|
|
2124
2416
|
export type Half = number & Half$instance & __Half$views;
|
|
2125
2417
|
|
|
2126
2418
|
|
|
2127
2419
|
export interface HashCode$instance {
|
|
2420
|
+
readonly __tsonic_type_System_HashCode: never;
|
|
2421
|
+
|
|
2128
2422
|
Add<T>(value: T): void;
|
|
2129
2423
|
Add<T>(value: T, comparer: IEqualityComparer_1<T>): void;
|
|
2130
2424
|
AddBytes(value: ReadOnlySpan_1<Byte>): void;
|
|
@@ -2150,6 +2444,10 @@ export const HashCode: {
|
|
|
2150
2444
|
export type HashCode = HashCode$instance;
|
|
2151
2445
|
|
|
2152
2446
|
export interface Index$instance {
|
|
2447
|
+
readonly __tsonic_type_System_Index: never;
|
|
2448
|
+
|
|
2449
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2450
|
+
|
|
2153
2451
|
readonly IsFromEnd: boolean;
|
|
2154
2452
|
readonly Value: int;
|
|
2155
2453
|
Equals(value: unknown): boolean;
|
|
@@ -2180,6 +2478,39 @@ export type Index = Index$instance & __Index$views;
|
|
|
2180
2478
|
|
|
2181
2479
|
|
|
2182
2480
|
export interface Int128$instance extends IBitwiseOperators_3<Int128, Int128, Int128>, IComparisonOperators_3<Int128, Int128, Boolean>, IEqualityOperators_3<Int128, Int128, Boolean>, IModulusOperators_3<Int128, Int128, Int128>, IAdditionOperators_3<Int128, Int128, Int128>, IDecrementOperators_1<Int128>, IDivisionOperators_3<Int128, Int128, Int128>, IIncrementOperators_1<Int128>, IMultiplyOperators_3<Int128, Int128, Int128>, ISubtractionOperators_3<Int128, Int128, Int128>, IUnaryPlusOperators_2<Int128, Int128>, IUnaryNegationOperators_2<Int128, Int128>, IShiftOperators_3<Int128, Int32, Int128> {
|
|
2481
|
+
readonly __tsonic_type_System_Int128: never;
|
|
2482
|
+
|
|
2483
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
2484
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
2485
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2486
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
2487
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
2488
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
2489
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
2490
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
2491
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
2492
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
2493
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
2494
|
+
readonly __tsonic_iface_System_Numerics_IBinaryInteger_1: never;
|
|
2495
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
2496
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
2497
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
2498
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
2499
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
2500
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
2501
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
2502
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
2503
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
2504
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
2505
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
2506
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
2507
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
2508
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
2509
|
+
readonly __tsonic_iface_System_Numerics_ISignedNumber_1: never;
|
|
2510
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
2511
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
2512
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
2513
|
+
|
|
2183
2514
|
CompareTo(value: unknown): int;
|
|
2184
2515
|
CompareTo(value: int128): int;
|
|
2185
2516
|
Equals(obj: unknown): boolean;
|
|
@@ -2273,12 +2604,44 @@ export interface __Int128$views {
|
|
|
2273
2604
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
2274
2605
|
}
|
|
2275
2606
|
|
|
2276
|
-
export interface Int128$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Int128> {}
|
|
2277
|
-
|
|
2278
2607
|
export type Int128 = number & Int128$instance & __Int128$views;
|
|
2279
2608
|
|
|
2280
2609
|
|
|
2281
2610
|
export interface Int16$instance extends IBitwiseOperators_3<Int16, Int16, Int16>, IComparisonOperators_3<Int16, Int16, Boolean>, IEqualityOperators_3<Int16, Int16, Boolean>, IModulusOperators_3<Int16, Int16, Int16>, IAdditionOperators_3<Int16, Int16, Int16>, IDecrementOperators_1<Int16>, IDivisionOperators_3<Int16, Int16, Int16>, IIncrementOperators_1<Int16>, IMultiplyOperators_3<Int16, Int16, Int16>, ISubtractionOperators_3<Int16, Int16, Int16>, IUnaryPlusOperators_2<Int16, Int16>, IUnaryNegationOperators_2<Int16, Int16>, IShiftOperators_3<Int16, Int32, Int16> {
|
|
2611
|
+
readonly __tsonic_type_System_Int16: never;
|
|
2612
|
+
|
|
2613
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
2614
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
2615
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
2616
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2617
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
2618
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
2619
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
2620
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
2621
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
2622
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
2623
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
2624
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
2625
|
+
readonly __tsonic_iface_System_Numerics_IBinaryInteger_1: never;
|
|
2626
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
2627
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
2628
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
2629
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
2630
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
2631
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
2632
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
2633
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
2634
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
2635
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
2636
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
2637
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
2638
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
2639
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
2640
|
+
readonly __tsonic_iface_System_Numerics_ISignedNumber_1: never;
|
|
2641
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
2642
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
2643
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
2644
|
+
|
|
2282
2645
|
CompareTo(value: unknown): int;
|
|
2283
2646
|
CompareTo(value: short): int;
|
|
2284
2647
|
Equals(obj: unknown): boolean;
|
|
@@ -2371,12 +2734,44 @@ export interface __Int16$views {
|
|
|
2371
2734
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
2372
2735
|
}
|
|
2373
2736
|
|
|
2374
|
-
export interface Int16$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Int16> {}
|
|
2375
|
-
|
|
2376
2737
|
export type Int16 = number & Int16$instance & __Int16$views;
|
|
2377
2738
|
|
|
2378
2739
|
|
|
2379
2740
|
export interface Int32$instance extends IBitwiseOperators_3<Int32, Int32, Int32>, IComparisonOperators_3<Int32, Int32, Boolean>, IEqualityOperators_3<Int32, Int32, Boolean>, IModulusOperators_3<Int32, Int32, Int32>, IAdditionOperators_3<Int32, Int32, Int32>, IDecrementOperators_1<Int32>, IDivisionOperators_3<Int32, Int32, Int32>, IIncrementOperators_1<Int32>, IMultiplyOperators_3<Int32, Int32, Int32>, ISubtractionOperators_3<Int32, Int32, Int32>, IUnaryPlusOperators_2<Int32, Int32>, IUnaryNegationOperators_2<Int32, Int32>, IShiftOperators_3<Int32, Int32, Int32> {
|
|
2741
|
+
readonly __tsonic_type_System_Int32: never;
|
|
2742
|
+
|
|
2743
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
2744
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
2745
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
2746
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2747
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
2748
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
2749
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
2750
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
2751
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
2752
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
2753
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
2754
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
2755
|
+
readonly __tsonic_iface_System_Numerics_IBinaryInteger_1: never;
|
|
2756
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
2757
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
2758
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
2759
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
2760
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
2761
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
2762
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
2763
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
2764
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
2765
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
2766
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
2767
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
2768
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
2769
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
2770
|
+
readonly __tsonic_iface_System_Numerics_ISignedNumber_1: never;
|
|
2771
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
2772
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
2773
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
2774
|
+
|
|
2380
2775
|
CompareTo(value: unknown): int;
|
|
2381
2776
|
CompareTo(value: int): int;
|
|
2382
2777
|
Equals(obj: unknown): boolean;
|
|
@@ -2470,12 +2865,44 @@ export interface __Int32$views {
|
|
|
2470
2865
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
2471
2866
|
}
|
|
2472
2867
|
|
|
2473
|
-
export interface Int32$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Int32> {}
|
|
2474
|
-
|
|
2475
2868
|
export type Int32 = number & Int32$instance & __Int32$views;
|
|
2476
2869
|
|
|
2477
2870
|
|
|
2478
2871
|
export interface Int64$instance extends IBitwiseOperators_3<Int64, Int64, Int64>, IComparisonOperators_3<Int64, Int64, Boolean>, IEqualityOperators_3<Int64, Int64, Boolean>, IModulusOperators_3<Int64, Int64, Int64>, IAdditionOperators_3<Int64, Int64, Int64>, IDecrementOperators_1<Int64>, IDivisionOperators_3<Int64, Int64, Int64>, IIncrementOperators_1<Int64>, IMultiplyOperators_3<Int64, Int64, Int64>, ISubtractionOperators_3<Int64, Int64, Int64>, IUnaryPlusOperators_2<Int64, Int64>, IUnaryNegationOperators_2<Int64, Int64>, IShiftOperators_3<Int64, Int32, Int64> {
|
|
2872
|
+
readonly __tsonic_type_System_Int64: never;
|
|
2873
|
+
|
|
2874
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
2875
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
2876
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
2877
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2878
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
2879
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
2880
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
2881
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
2882
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
2883
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
2884
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
2885
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
2886
|
+
readonly __tsonic_iface_System_Numerics_IBinaryInteger_1: never;
|
|
2887
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
2888
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
2889
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
2890
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
2891
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
2892
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
2893
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
2894
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
2895
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
2896
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
2897
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
2898
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
2899
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
2900
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
2901
|
+
readonly __tsonic_iface_System_Numerics_ISignedNumber_1: never;
|
|
2902
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
2903
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
2904
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
2905
|
+
|
|
2479
2906
|
CompareTo(value: unknown): int;
|
|
2480
2907
|
CompareTo(value: long): int;
|
|
2481
2908
|
Equals(obj: unknown): boolean;
|
|
@@ -2569,12 +2996,44 @@ export interface __Int64$views {
|
|
|
2569
2996
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
2570
2997
|
}
|
|
2571
2998
|
|
|
2572
|
-
export interface Int64$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Int64> {}
|
|
2573
|
-
|
|
2574
2999
|
export type Int64 = number & Int64$instance & __Int64$views;
|
|
2575
3000
|
|
|
2576
3001
|
|
|
2577
3002
|
export interface IntPtr$instance extends IBitwiseOperators_3<IntPtr, IntPtr, IntPtr>, IComparisonOperators_3<IntPtr, IntPtr, Boolean>, IEqualityOperators_3<IntPtr, IntPtr, Boolean>, IModulusOperators_3<IntPtr, IntPtr, IntPtr>, IAdditionOperators_3<IntPtr, IntPtr, IntPtr>, IDecrementOperators_1<IntPtr>, IDivisionOperators_3<IntPtr, IntPtr, IntPtr>, IIncrementOperators_1<IntPtr>, IMultiplyOperators_3<IntPtr, IntPtr, IntPtr>, ISubtractionOperators_3<IntPtr, IntPtr, IntPtr>, IUnaryPlusOperators_2<IntPtr, IntPtr>, IUnaryNegationOperators_2<IntPtr, IntPtr>, IShiftOperators_3<IntPtr, Int32, IntPtr> {
|
|
3003
|
+
readonly __tsonic_type_System_IntPtr: never;
|
|
3004
|
+
|
|
3005
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
3006
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
3007
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3008
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
3009
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
3010
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
3011
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
3012
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
3013
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
3014
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
3015
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
3016
|
+
readonly __tsonic_iface_System_Numerics_IBinaryInteger_1: never;
|
|
3017
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
3018
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
3019
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
3020
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
3021
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
3022
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
3023
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
3024
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
3025
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
3026
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
3027
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
3028
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
3029
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
3030
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
3031
|
+
readonly __tsonic_iface_System_Numerics_ISignedNumber_1: never;
|
|
3032
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
3033
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
3034
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
3035
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
3036
|
+
|
|
2578
3037
|
CompareTo(value: unknown): int;
|
|
2579
3038
|
CompareTo(value: nint): int;
|
|
2580
3039
|
Equals(obj: unknown): boolean;
|
|
@@ -2676,12 +3135,14 @@ export interface __IntPtr$views {
|
|
|
2676
3135
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
2677
3136
|
}
|
|
2678
3137
|
|
|
2679
|
-
export interface IntPtr$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<IntPtr>, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
2680
|
-
|
|
2681
3138
|
export type IntPtr = number & IntPtr$instance & __IntPtr$views;
|
|
2682
3139
|
|
|
2683
3140
|
|
|
2684
3141
|
export interface Memory_1$instance<T> {
|
|
3142
|
+
readonly __tsonic_type_System_Memory_1: never;
|
|
3143
|
+
|
|
3144
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3145
|
+
|
|
2685
3146
|
readonly IsEmpty: boolean;
|
|
2686
3147
|
readonly Length: int;
|
|
2687
3148
|
readonly Span: Span_1<T>;
|
|
@@ -2716,6 +3177,12 @@ export type Memory_1<T> = Memory_1$instance<T> & __Memory_1$views<T>;
|
|
|
2716
3177
|
|
|
2717
3178
|
|
|
2718
3179
|
export interface MemoryExtensions_SpanSplitEnumerator_1$instance<T extends (IEquatable_1<T> | number | string | boolean)> {
|
|
3180
|
+
readonly __tsonic_type_System_MemoryExtensions_SpanSplitEnumerator_1: never;
|
|
3181
|
+
|
|
3182
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3183
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3184
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
3185
|
+
|
|
2719
3186
|
readonly Current: Range;
|
|
2720
3187
|
readonly Source: ReadOnlySpan_1<T>;
|
|
2721
3188
|
GetEnumerator(): MemoryExtensions_SpanSplitEnumerator_1<T>;
|
|
@@ -2739,6 +3206,8 @@ export type MemoryExtensions_SpanSplitEnumerator_1<T extends (IEquatable_1<T> |
|
|
|
2739
3206
|
|
|
2740
3207
|
|
|
2741
3208
|
export interface MemoryExtensions_TryWriteInterpolatedStringHandler$instance {
|
|
3209
|
+
readonly __tsonic_type_System_MemoryExtensions_TryWriteInterpolatedStringHandler: never;
|
|
3210
|
+
|
|
2742
3211
|
AppendFormatted<T>(value: T): boolean;
|
|
2743
3212
|
AppendFormatted<T>(value: T, format: string): boolean;
|
|
2744
3213
|
AppendFormatted<T>(value: T, alignment: int): boolean;
|
|
@@ -2761,6 +3230,10 @@ export const MemoryExtensions_TryWriteInterpolatedStringHandler: {
|
|
|
2761
3230
|
export type MemoryExtensions_TryWriteInterpolatedStringHandler = MemoryExtensions_TryWriteInterpolatedStringHandler$instance;
|
|
2762
3231
|
|
|
2763
3232
|
export interface ModuleHandle$instance {
|
|
3233
|
+
readonly __tsonic_type_System_ModuleHandle: never;
|
|
3234
|
+
|
|
3235
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3236
|
+
|
|
2764
3237
|
readonly MDStreamVersion: int;
|
|
2765
3238
|
Equals(obj: unknown): boolean;
|
|
2766
3239
|
Equals(handle: ModuleHandle): boolean;
|
|
@@ -2794,6 +3267,8 @@ export type ModuleHandle = ModuleHandle$instance & __ModuleHandle$views;
|
|
|
2794
3267
|
|
|
2795
3268
|
|
|
2796
3269
|
export interface Nullable_1$instance<T extends unknown> {
|
|
3270
|
+
readonly __tsonic_type_System_Nullable_1: never;
|
|
3271
|
+
|
|
2797
3272
|
readonly HasValue: boolean;
|
|
2798
3273
|
readonly Value: T;
|
|
2799
3274
|
Equals(other: unknown): boolean;
|
|
@@ -2812,6 +3287,10 @@ export const Nullable_1: {
|
|
|
2812
3287
|
export type Nullable_1<T> = Nullable_1$instance<T>;
|
|
2813
3288
|
|
|
2814
3289
|
export interface Range$instance {
|
|
3290
|
+
readonly __tsonic_type_System_Range: never;
|
|
3291
|
+
|
|
3292
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3293
|
+
|
|
2815
3294
|
readonly End: Index;
|
|
2816
3295
|
readonly Start: Index;
|
|
2817
3296
|
Equals(value: unknown): boolean;
|
|
@@ -2841,6 +3320,10 @@ export type Range = Range$instance & __Range$views;
|
|
|
2841
3320
|
|
|
2842
3321
|
|
|
2843
3322
|
export interface ReadOnlyMemory_1$instance<T> {
|
|
3323
|
+
readonly __tsonic_type_System_ReadOnlyMemory_1: never;
|
|
3324
|
+
|
|
3325
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3326
|
+
|
|
2844
3327
|
readonly IsEmpty: boolean;
|
|
2845
3328
|
readonly Length: int;
|
|
2846
3329
|
readonly Span: ReadOnlySpan_1<T>;
|
|
@@ -2875,6 +3358,8 @@ export type ReadOnlyMemory_1<T> = ReadOnlyMemory_1$instance<T> & __ReadOnlyMemor
|
|
|
2875
3358
|
|
|
2876
3359
|
|
|
2877
3360
|
export interface ReadOnlySpan_1$instance<T> {
|
|
3361
|
+
readonly __tsonic_type_System_ReadOnlySpan_1: never;
|
|
3362
|
+
|
|
2878
3363
|
readonly IsEmpty: boolean;
|
|
2879
3364
|
readonly [index: number]: T;
|
|
2880
3365
|
readonly Length: int;
|
|
@@ -2904,6 +3389,12 @@ export const ReadOnlySpan_1: {
|
|
|
2904
3389
|
export type ReadOnlySpan_1<T> = ReadOnlySpan_1$instance<T>;
|
|
2905
3390
|
|
|
2906
3391
|
export interface ReadOnlySpan_1_Enumerator$instance<T> {
|
|
3392
|
+
readonly __tsonic_type_System_ReadOnlySpan_1_Enumerator: never;
|
|
3393
|
+
|
|
3394
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3395
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3396
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
3397
|
+
|
|
2907
3398
|
readonly Current: T;
|
|
2908
3399
|
MoveNext(): boolean;
|
|
2909
3400
|
Reset(): void;
|
|
@@ -2925,6 +3416,8 @@ export type ReadOnlySpan_1_Enumerator<T> = ReadOnlySpan_1_Enumerator$instance<T>
|
|
|
2925
3416
|
|
|
2926
3417
|
|
|
2927
3418
|
export interface RuntimeArgumentHandle$instance {
|
|
3419
|
+
readonly __tsonic_type_System_RuntimeArgumentHandle: never;
|
|
3420
|
+
|
|
2928
3421
|
}
|
|
2929
3422
|
|
|
2930
3423
|
|
|
@@ -2935,7 +3428,12 @@ export const RuntimeArgumentHandle: {
|
|
|
2935
3428
|
|
|
2936
3429
|
export type RuntimeArgumentHandle = RuntimeArgumentHandle$instance;
|
|
2937
3430
|
|
|
2938
|
-
export interface RuntimeFieldHandle$instance {
|
|
3431
|
+
export interface RuntimeFieldHandle$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
3432
|
+
readonly __tsonic_type_System_RuntimeFieldHandle: never;
|
|
3433
|
+
|
|
3434
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3435
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
3436
|
+
|
|
2939
3437
|
readonly Value: nint;
|
|
2940
3438
|
Equals(obj: unknown): boolean;
|
|
2941
3439
|
Equals(handle: RuntimeFieldHandle): boolean;
|
|
@@ -2959,12 +3457,15 @@ export interface __RuntimeFieldHandle$views {
|
|
|
2959
3457
|
Equals(other: RuntimeFieldHandle): boolean;
|
|
2960
3458
|
}
|
|
2961
3459
|
|
|
2962
|
-
export interface RuntimeFieldHandle$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
2963
|
-
|
|
2964
3460
|
export type RuntimeFieldHandle = RuntimeFieldHandle$instance & __RuntimeFieldHandle$views;
|
|
2965
3461
|
|
|
2966
3462
|
|
|
2967
|
-
export interface RuntimeMethodHandle$instance {
|
|
3463
|
+
export interface RuntimeMethodHandle$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
3464
|
+
readonly __tsonic_type_System_RuntimeMethodHandle: never;
|
|
3465
|
+
|
|
3466
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3467
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
3468
|
+
|
|
2968
3469
|
readonly Value: nint;
|
|
2969
3470
|
Equals(obj: unknown): boolean;
|
|
2970
3471
|
Equals(handle: RuntimeMethodHandle): boolean;
|
|
@@ -2989,12 +3490,15 @@ export interface __RuntimeMethodHandle$views {
|
|
|
2989
3490
|
Equals(other: RuntimeMethodHandle): boolean;
|
|
2990
3491
|
}
|
|
2991
3492
|
|
|
2992
|
-
export interface RuntimeMethodHandle$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
2993
|
-
|
|
2994
3493
|
export type RuntimeMethodHandle = RuntimeMethodHandle$instance & __RuntimeMethodHandle$views;
|
|
2995
3494
|
|
|
2996
3495
|
|
|
2997
|
-
export interface RuntimeTypeHandle$instance {
|
|
3496
|
+
export interface RuntimeTypeHandle$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
3497
|
+
readonly __tsonic_type_System_RuntimeTypeHandle: never;
|
|
3498
|
+
|
|
3499
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3500
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
3501
|
+
|
|
2998
3502
|
readonly Value: nint;
|
|
2999
3503
|
Equals(obj: unknown): boolean;
|
|
3000
3504
|
Equals(handle: RuntimeTypeHandle): boolean;
|
|
@@ -3019,12 +3523,44 @@ export interface __RuntimeTypeHandle$views {
|
|
|
3019
3523
|
Equals(other: RuntimeTypeHandle): boolean;
|
|
3020
3524
|
}
|
|
3021
3525
|
|
|
3022
|
-
export interface RuntimeTypeHandle$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
3023
|
-
|
|
3024
3526
|
export type RuntimeTypeHandle = RuntimeTypeHandle$instance & __RuntimeTypeHandle$views;
|
|
3025
3527
|
|
|
3026
3528
|
|
|
3027
3529
|
export interface SByte$instance extends IBitwiseOperators_3<SByte, SByte, SByte>, IComparisonOperators_3<SByte, SByte, Boolean>, IEqualityOperators_3<SByte, SByte, Boolean>, IModulusOperators_3<SByte, SByte, SByte>, IAdditionOperators_3<SByte, SByte, SByte>, IDecrementOperators_1<SByte>, IDivisionOperators_3<SByte, SByte, SByte>, IIncrementOperators_1<SByte>, IMultiplyOperators_3<SByte, SByte, SByte>, ISubtractionOperators_3<SByte, SByte, SByte>, IUnaryPlusOperators_2<SByte, SByte>, IUnaryNegationOperators_2<SByte, SByte>, IShiftOperators_3<SByte, Int32, SByte> {
|
|
3530
|
+
readonly __tsonic_type_System_SByte: never;
|
|
3531
|
+
|
|
3532
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
3533
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
3534
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
3535
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3536
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
3537
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
3538
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
3539
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
3540
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
3541
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
3542
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
3543
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
3544
|
+
readonly __tsonic_iface_System_Numerics_IBinaryInteger_1: never;
|
|
3545
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
3546
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
3547
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
3548
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
3549
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
3550
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
3551
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
3552
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
3553
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
3554
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
3555
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
3556
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
3557
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
3558
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
3559
|
+
readonly __tsonic_iface_System_Numerics_ISignedNumber_1: never;
|
|
3560
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
3561
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
3562
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
3563
|
+
|
|
3028
3564
|
CompareTo(obj: unknown): int;
|
|
3029
3565
|
CompareTo(value: sbyte): int;
|
|
3030
3566
|
Equals(obj: unknown): boolean;
|
|
@@ -3117,12 +3653,14 @@ export interface __SByte$views {
|
|
|
3117
3653
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
3118
3654
|
}
|
|
3119
3655
|
|
|
3120
|
-
export interface SByte$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<SByte> {}
|
|
3121
|
-
|
|
3122
3656
|
export type SByte = number & SByte$instance & __SByte$views;
|
|
3123
3657
|
|
|
3124
3658
|
|
|
3125
3659
|
export interface SequencePosition$instance {
|
|
3660
|
+
readonly __tsonic_type_System_SequencePosition: never;
|
|
3661
|
+
|
|
3662
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3663
|
+
|
|
3126
3664
|
Equals(other: SequencePosition): boolean;
|
|
3127
3665
|
Equals(obj: unknown): boolean;
|
|
3128
3666
|
GetHashCode(): int;
|
|
@@ -3147,6 +3685,48 @@ export type SequencePosition = SequencePosition$instance & __SequencePosition$vi
|
|
|
3147
3685
|
|
|
3148
3686
|
|
|
3149
3687
|
export interface Single$instance extends IBitwiseOperators_3<Single, Single, Single>, IComparisonOperators_3<Single, Single, Boolean>, IEqualityOperators_3<Single, Single, Boolean>, IModulusOperators_3<Single, Single, Single>, IAdditionOperators_3<Single, Single, Single>, IDecrementOperators_1<Single>, IDivisionOperators_3<Single, Single, Single>, IIncrementOperators_1<Single>, IMultiplyOperators_3<Single, Single, Single>, ISubtractionOperators_3<Single, Single, Single>, IUnaryPlusOperators_2<Single, Single>, IUnaryNegationOperators_2<Single, Single> {
|
|
3688
|
+
readonly __tsonic_type_System_Single: never;
|
|
3689
|
+
|
|
3690
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
3691
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
3692
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
3693
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3694
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
3695
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
3696
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
3697
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
3698
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
3699
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
3700
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
3701
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
3702
|
+
readonly __tsonic_iface_System_Numerics_IBinaryFloatingPointIeee754_1: never;
|
|
3703
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
3704
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
3705
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
3706
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
3707
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
3708
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
3709
|
+
readonly __tsonic_iface_System_Numerics_IExponentialFunctions_1: never;
|
|
3710
|
+
readonly __tsonic_iface_System_Numerics_IFloatingPointConstants_1: never;
|
|
3711
|
+
readonly __tsonic_iface_System_Numerics_IFloatingPointIeee754_1: never;
|
|
3712
|
+
readonly __tsonic_iface_System_Numerics_IFloatingPoint_1: never;
|
|
3713
|
+
readonly __tsonic_iface_System_Numerics_IHyperbolicFunctions_1: never;
|
|
3714
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
3715
|
+
readonly __tsonic_iface_System_Numerics_ILogarithmicFunctions_1: never;
|
|
3716
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
3717
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
3718
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
3719
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
3720
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
3721
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
3722
|
+
readonly __tsonic_iface_System_Numerics_IPowerFunctions_1: never;
|
|
3723
|
+
readonly __tsonic_iface_System_Numerics_IRootFunctions_1: never;
|
|
3724
|
+
readonly __tsonic_iface_System_Numerics_ISignedNumber_1: never;
|
|
3725
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
3726
|
+
readonly __tsonic_iface_System_Numerics_ITrigonometricFunctions_1: never;
|
|
3727
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
3728
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
3729
|
+
|
|
3150
3730
|
CompareTo(value: unknown): int;
|
|
3151
3731
|
CompareTo(value: float): int;
|
|
3152
3732
|
Equals(obj: unknown): boolean;
|
|
@@ -3320,12 +3900,12 @@ export interface __Single$views {
|
|
|
3320
3900
|
WriteExponentBigEndian(destination: Span_1<Byte>): int;
|
|
3321
3901
|
}
|
|
3322
3902
|
|
|
3323
|
-
export interface Single$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Single> {}
|
|
3324
|
-
|
|
3325
3903
|
export type Single = number & Single$instance & __Single$views;
|
|
3326
3904
|
|
|
3327
3905
|
|
|
3328
3906
|
export interface Span_1$instance<T> {
|
|
3907
|
+
readonly __tsonic_type_System_Span_1: never;
|
|
3908
|
+
|
|
3329
3909
|
readonly IsEmpty: boolean;
|
|
3330
3910
|
readonly [index: number]: T;
|
|
3331
3911
|
readonly Length: int;
|
|
@@ -3356,6 +3936,12 @@ export const Span_1: {
|
|
|
3356
3936
|
export type Span_1<T> = Span_1$instance<T>;
|
|
3357
3937
|
|
|
3358
3938
|
export interface Span_1_Enumerator$instance<T> {
|
|
3939
|
+
readonly __tsonic_type_System_Span_1_Enumerator: never;
|
|
3940
|
+
|
|
3941
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3942
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3943
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
3944
|
+
|
|
3359
3945
|
readonly Current: T;
|
|
3360
3946
|
MoveNext(): boolean;
|
|
3361
3947
|
Reset(): void;
|
|
@@ -3377,6 +3963,17 @@ export type Span_1_Enumerator<T> = Span_1_Enumerator$instance<T> & __Span_1_Enum
|
|
|
3377
3963
|
|
|
3378
3964
|
|
|
3379
3965
|
export interface TimeOnly$instance {
|
|
3966
|
+
readonly __tsonic_type_System_TimeOnly: never;
|
|
3967
|
+
|
|
3968
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
3969
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
3970
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3971
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
3972
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
3973
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
3974
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
3975
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
3976
|
+
|
|
3380
3977
|
readonly Hour: int;
|
|
3381
3978
|
readonly Microsecond: int;
|
|
3382
3979
|
readonly Millisecond: int;
|
|
@@ -3467,12 +4064,21 @@ export interface __TimeOnly$views {
|
|
|
3467
4064
|
TryFormat(utf8Destination: Span_1<Byte>, bytesWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
3468
4065
|
}
|
|
3469
4066
|
|
|
3470
|
-
export interface TimeOnly$instance extends IComparable$instance, ISpanParsable_1$instance<TimeOnly> {}
|
|
3471
|
-
|
|
3472
4067
|
export type TimeOnly = TimeOnly$instance & __TimeOnly$views;
|
|
3473
4068
|
|
|
3474
4069
|
|
|
3475
4070
|
export interface TimeSpan$instance {
|
|
4071
|
+
readonly __tsonic_type_System_TimeSpan: never;
|
|
4072
|
+
|
|
4073
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
4074
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4075
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4076
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
4077
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
4078
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
4079
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
4080
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
4081
|
+
|
|
3476
4082
|
readonly Days: int;
|
|
3477
4083
|
readonly Hours: int;
|
|
3478
4084
|
readonly Microseconds: int;
|
|
@@ -3599,12 +4205,16 @@ export interface __TimeSpan$views {
|
|
|
3599
4205
|
TryFormat(utf8Destination: Span_1<Byte>, bytesWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
3600
4206
|
}
|
|
3601
4207
|
|
|
3602
|
-
export interface TimeSpan$instance extends IComparable$instance, ISpanParsable_1$instance<TimeSpan> {}
|
|
3603
|
-
|
|
3604
4208
|
export type TimeSpan = TimeSpan$instance & __TimeSpan$views;
|
|
3605
4209
|
|
|
3606
4210
|
|
|
3607
|
-
export interface TimeZoneInfo_TransitionTime$instance {
|
|
4211
|
+
export interface TimeZoneInfo_TransitionTime$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
4212
|
+
readonly __tsonic_type_System_TimeZoneInfo_TransitionTime: never;
|
|
4213
|
+
|
|
4214
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4215
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
4216
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
4217
|
+
|
|
3608
4218
|
readonly Day: int;
|
|
3609
4219
|
readonly DayOfWeek: DayOfWeek;
|
|
3610
4220
|
readonly IsFixedDateRule: boolean;
|
|
@@ -3633,12 +4243,12 @@ export interface __TimeZoneInfo_TransitionTime$views {
|
|
|
3633
4243
|
Equals(other: TimeZoneInfo_TransitionTime): boolean;
|
|
3634
4244
|
}
|
|
3635
4245
|
|
|
3636
|
-
export interface TimeZoneInfo_TransitionTime$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
3637
|
-
|
|
3638
4246
|
export type TimeZoneInfo_TransitionTime = TimeZoneInfo_TransitionTime$instance & __TimeZoneInfo_TransitionTime$views;
|
|
3639
4247
|
|
|
3640
4248
|
|
|
3641
4249
|
export interface TypedReference$instance {
|
|
4250
|
+
readonly __tsonic_type_System_TypedReference: never;
|
|
4251
|
+
|
|
3642
4252
|
Equals(o: unknown): boolean;
|
|
3643
4253
|
GetHashCode(): int;
|
|
3644
4254
|
}
|
|
@@ -3657,6 +4267,39 @@ export const TypedReference: {
|
|
|
3657
4267
|
export type TypedReference = TypedReference$instance;
|
|
3658
4268
|
|
|
3659
4269
|
export interface UInt128$instance extends IBitwiseOperators_3<UInt128, UInt128, UInt128>, IComparisonOperators_3<UInt128, UInt128, Boolean>, IEqualityOperators_3<UInt128, UInt128, Boolean>, IModulusOperators_3<UInt128, UInt128, UInt128>, IAdditionOperators_3<UInt128, UInt128, UInt128>, IDecrementOperators_1<UInt128>, IDivisionOperators_3<UInt128, UInt128, UInt128>, IIncrementOperators_1<UInt128>, IMultiplyOperators_3<UInt128, UInt128, UInt128>, ISubtractionOperators_3<UInt128, UInt128, UInt128>, IUnaryPlusOperators_2<UInt128, UInt128>, IUnaryNegationOperators_2<UInt128, UInt128>, IShiftOperators_3<UInt128, Int32, UInt128> {
|
|
4270
|
+
readonly __tsonic_type_System_UInt128: never;
|
|
4271
|
+
|
|
4272
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
4273
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4274
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4275
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
4276
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
4277
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
4278
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
4279
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
4280
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
4281
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
4282
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
4283
|
+
readonly __tsonic_iface_System_Numerics_IBinaryInteger_1: never;
|
|
4284
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
4285
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
4286
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
4287
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
4288
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
4289
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
4290
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
4291
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
4292
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
4293
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
4294
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
4295
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
4296
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
4297
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
4298
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
4299
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
4300
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
4301
|
+
readonly __tsonic_iface_System_Numerics_IUnsignedNumber_1: never;
|
|
4302
|
+
|
|
3660
4303
|
CompareTo(value: unknown): int;
|
|
3661
4304
|
CompareTo(value: uint128): int;
|
|
3662
4305
|
Equals(obj: unknown): boolean;
|
|
@@ -3743,12 +4386,44 @@ export interface __UInt128$views {
|
|
|
3743
4386
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
3744
4387
|
}
|
|
3745
4388
|
|
|
3746
|
-
export interface UInt128$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<UInt128> {}
|
|
3747
|
-
|
|
3748
4389
|
export type UInt128 = number & UInt128$instance & __UInt128$views;
|
|
3749
4390
|
|
|
3750
4391
|
|
|
3751
4392
|
export interface UInt16$instance extends IBitwiseOperators_3<UInt16, UInt16, UInt16>, IComparisonOperators_3<UInt16, UInt16, Boolean>, IEqualityOperators_3<UInt16, UInt16, Boolean>, IModulusOperators_3<UInt16, UInt16, UInt16>, IAdditionOperators_3<UInt16, UInt16, UInt16>, IDecrementOperators_1<UInt16>, IDivisionOperators_3<UInt16, UInt16, UInt16>, IIncrementOperators_1<UInt16>, IMultiplyOperators_3<UInt16, UInt16, UInt16>, ISubtractionOperators_3<UInt16, UInt16, UInt16>, IUnaryPlusOperators_2<UInt16, UInt16>, IUnaryNegationOperators_2<UInt16, UInt16>, IShiftOperators_3<UInt16, Int32, UInt16> {
|
|
4393
|
+
readonly __tsonic_type_System_UInt16: never;
|
|
4394
|
+
|
|
4395
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
4396
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4397
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
4398
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4399
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
4400
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
4401
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
4402
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
4403
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
4404
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
4405
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
4406
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
4407
|
+
readonly __tsonic_iface_System_Numerics_IBinaryInteger_1: never;
|
|
4408
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
4409
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
4410
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
4411
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
4412
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
4413
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
4414
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
4415
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
4416
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
4417
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
4418
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
4419
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
4420
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
4421
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
4422
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
4423
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
4424
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
4425
|
+
readonly __tsonic_iface_System_Numerics_IUnsignedNumber_1: never;
|
|
4426
|
+
|
|
3752
4427
|
CompareTo(value: unknown): int;
|
|
3753
4428
|
CompareTo(value: ushort): int;
|
|
3754
4429
|
Equals(obj: unknown): boolean;
|
|
@@ -3835,12 +4510,44 @@ export interface __UInt16$views {
|
|
|
3835
4510
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
3836
4511
|
}
|
|
3837
4512
|
|
|
3838
|
-
export interface UInt16$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<UInt16> {}
|
|
3839
|
-
|
|
3840
4513
|
export type UInt16 = number & UInt16$instance & __UInt16$views;
|
|
3841
4514
|
|
|
3842
4515
|
|
|
3843
4516
|
export interface UInt32$instance extends IBitwiseOperators_3<UInt32, UInt32, UInt32>, IComparisonOperators_3<UInt32, UInt32, Boolean>, IEqualityOperators_3<UInt32, UInt32, Boolean>, IModulusOperators_3<UInt32, UInt32, UInt32>, IAdditionOperators_3<UInt32, UInt32, UInt32>, IDecrementOperators_1<UInt32>, IDivisionOperators_3<UInt32, UInt32, UInt32>, IIncrementOperators_1<UInt32>, IMultiplyOperators_3<UInt32, UInt32, UInt32>, ISubtractionOperators_3<UInt32, UInt32, UInt32>, IUnaryPlusOperators_2<UInt32, UInt32>, IUnaryNegationOperators_2<UInt32, UInt32>, IShiftOperators_3<UInt32, Int32, UInt32> {
|
|
4517
|
+
readonly __tsonic_type_System_UInt32: never;
|
|
4518
|
+
|
|
4519
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
4520
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4521
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
4522
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4523
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
4524
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
4525
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
4526
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
4527
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
4528
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
4529
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
4530
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
4531
|
+
readonly __tsonic_iface_System_Numerics_IBinaryInteger_1: never;
|
|
4532
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
4533
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
4534
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
4535
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
4536
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
4537
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
4538
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
4539
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
4540
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
4541
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
4542
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
4543
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
4544
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
4545
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
4546
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
4547
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
4548
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
4549
|
+
readonly __tsonic_iface_System_Numerics_IUnsignedNumber_1: never;
|
|
4550
|
+
|
|
3844
4551
|
CompareTo(value: unknown): int;
|
|
3845
4552
|
CompareTo(value: uint): int;
|
|
3846
4553
|
Equals(obj: unknown): boolean;
|
|
@@ -3928,12 +4635,44 @@ export interface __UInt32$views {
|
|
|
3928
4635
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
3929
4636
|
}
|
|
3930
4637
|
|
|
3931
|
-
export interface UInt32$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<UInt32> {}
|
|
3932
|
-
|
|
3933
4638
|
export type UInt32 = number & UInt32$instance & __UInt32$views;
|
|
3934
4639
|
|
|
3935
4640
|
|
|
3936
4641
|
export interface UInt64$instance extends IBitwiseOperators_3<UInt64, UInt64, UInt64>, IComparisonOperators_3<UInt64, UInt64, Boolean>, IEqualityOperators_3<UInt64, UInt64, Boolean>, IModulusOperators_3<UInt64, UInt64, UInt64>, IAdditionOperators_3<UInt64, UInt64, UInt64>, IDecrementOperators_1<UInt64>, IDivisionOperators_3<UInt64, UInt64, UInt64>, IIncrementOperators_1<UInt64>, IMultiplyOperators_3<UInt64, UInt64, UInt64>, ISubtractionOperators_3<UInt64, UInt64, UInt64>, IUnaryPlusOperators_2<UInt64, UInt64>, IUnaryNegationOperators_2<UInt64, UInt64>, IShiftOperators_3<UInt64, Int32, UInt64> {
|
|
4642
|
+
readonly __tsonic_type_System_UInt64: never;
|
|
4643
|
+
|
|
4644
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
4645
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4646
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
4647
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4648
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
4649
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
4650
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
4651
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
4652
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
4653
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
4654
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
4655
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
4656
|
+
readonly __tsonic_iface_System_Numerics_IBinaryInteger_1: never;
|
|
4657
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
4658
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
4659
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
4660
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
4661
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
4662
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
4663
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
4664
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
4665
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
4666
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
4667
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
4668
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
4669
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
4670
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
4671
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
4672
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
4673
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
4674
|
+
readonly __tsonic_iface_System_Numerics_IUnsignedNumber_1: never;
|
|
4675
|
+
|
|
3937
4676
|
CompareTo(value: unknown): int;
|
|
3938
4677
|
CompareTo(value: ulong): int;
|
|
3939
4678
|
Equals(obj: unknown): boolean;
|
|
@@ -4021,12 +4760,44 @@ export interface __UInt64$views {
|
|
|
4021
4760
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
4022
4761
|
}
|
|
4023
4762
|
|
|
4024
|
-
export interface UInt64$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<UInt64> {}
|
|
4025
|
-
|
|
4026
4763
|
export type UInt64 = number & UInt64$instance & __UInt64$views;
|
|
4027
4764
|
|
|
4028
4765
|
|
|
4029
4766
|
export interface UIntPtr$instance extends IBitwiseOperators_3<UIntPtr, UIntPtr, UIntPtr>, IComparisonOperators_3<UIntPtr, UIntPtr, Boolean>, IEqualityOperators_3<UIntPtr, UIntPtr, Boolean>, IModulusOperators_3<UIntPtr, UIntPtr, UIntPtr>, IAdditionOperators_3<UIntPtr, UIntPtr, UIntPtr>, IDecrementOperators_1<UIntPtr>, IDivisionOperators_3<UIntPtr, UIntPtr, UIntPtr>, IIncrementOperators_1<UIntPtr>, IMultiplyOperators_3<UIntPtr, UIntPtr, UIntPtr>, ISubtractionOperators_3<UIntPtr, UIntPtr, UIntPtr>, IUnaryPlusOperators_2<UIntPtr, UIntPtr>, IUnaryNegationOperators_2<UIntPtr, UIntPtr>, IShiftOperators_3<UIntPtr, Int32, UIntPtr> {
|
|
4767
|
+
readonly __tsonic_type_System_UIntPtr: never;
|
|
4768
|
+
|
|
4769
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
4770
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4771
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4772
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
4773
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
4774
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
4775
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
4776
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
4777
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
4778
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
4779
|
+
readonly __tsonic_iface_System_Numerics_IAdditiveIdentity_2: never;
|
|
4780
|
+
readonly __tsonic_iface_System_Numerics_IBinaryInteger_1: never;
|
|
4781
|
+
readonly __tsonic_iface_System_Numerics_IBinaryNumber_1: never;
|
|
4782
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
4783
|
+
readonly __tsonic_iface_System_Numerics_IComparisonOperators_3: never;
|
|
4784
|
+
readonly __tsonic_iface_System_Numerics_IDecrementOperators_1: never;
|
|
4785
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
4786
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
4787
|
+
readonly __tsonic_iface_System_Numerics_IIncrementOperators_1: never;
|
|
4788
|
+
readonly __tsonic_iface_System_Numerics_IMinMaxValue_1: never;
|
|
4789
|
+
readonly __tsonic_iface_System_Numerics_IModulusOperators_3: never;
|
|
4790
|
+
readonly __tsonic_iface_System_Numerics_IMultiplicativeIdentity_2: never;
|
|
4791
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
4792
|
+
readonly __tsonic_iface_System_Numerics_INumberBase_1: never;
|
|
4793
|
+
readonly __tsonic_iface_System_Numerics_INumber_1: never;
|
|
4794
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
4795
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
4796
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
4797
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
4798
|
+
readonly __tsonic_iface_System_Numerics_IUnsignedNumber_1: never;
|
|
4799
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
4800
|
+
|
|
4030
4801
|
CompareTo(value: unknown): int;
|
|
4031
4802
|
CompareTo(value: nuint): int;
|
|
4032
4803
|
Equals(obj: unknown): boolean;
|
|
@@ -4122,12 +4893,12 @@ export interface __UIntPtr$views {
|
|
|
4122
4893
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
4123
4894
|
}
|
|
4124
4895
|
|
|
4125
|
-
export interface UIntPtr$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<UIntPtr>, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
4126
|
-
|
|
4127
4896
|
export type UIntPtr = number & UIntPtr$instance & __UIntPtr$views;
|
|
4128
4897
|
|
|
4129
4898
|
|
|
4130
4899
|
export interface UriCreationOptions$instance {
|
|
4900
|
+
readonly __tsonic_type_System_UriCreationOptions: never;
|
|
4901
|
+
|
|
4131
4902
|
DangerousDisablePathAndQueryCanonicalization: boolean;
|
|
4132
4903
|
}
|
|
4133
4904
|
|
|
@@ -4140,6 +4911,15 @@ export const UriCreationOptions: {
|
|
|
4140
4911
|
export type UriCreationOptions = UriCreationOptions$instance;
|
|
4141
4912
|
|
|
4142
4913
|
export interface ValueTuple$instance {
|
|
4914
|
+
readonly __tsonic_type_System_ValueTuple: never;
|
|
4915
|
+
|
|
4916
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
4917
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
4918
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
4919
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4920
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4921
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
4922
|
+
|
|
4143
4923
|
CompareTo(other: ValueTuple): int;
|
|
4144
4924
|
Equals(obj: unknown): boolean;
|
|
4145
4925
|
Equals(other: ValueTuple): boolean;
|
|
@@ -4175,12 +4955,19 @@ export interface __ValueTuple$views {
|
|
|
4175
4955
|
CompareTo(obj: unknown): int;
|
|
4176
4956
|
}
|
|
4177
4957
|
|
|
4178
|
-
export interface ValueTuple$instance extends IComparable_1$instance<ValueTuple>, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
4179
|
-
|
|
4180
4958
|
export type ValueTuple = ValueTuple$instance & __ValueTuple$views;
|
|
4181
4959
|
|
|
4182
4960
|
|
|
4183
|
-
export interface ValueTuple_1$instance<T1> {
|
|
4961
|
+
export interface ValueTuple_1$instance<T1> extends IComparable_1$instance<ValueTuple_1<T1>>, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
4962
|
+
readonly __tsonic_type_System_ValueTuple_1: never;
|
|
4963
|
+
|
|
4964
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
4965
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
4966
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
4967
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4968
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4969
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
4970
|
+
|
|
4184
4971
|
Item1: T1;
|
|
4185
4972
|
CompareTo(other: ValueTuple_1<T1>): int;
|
|
4186
4973
|
Equals(obj: unknown): boolean;
|
|
@@ -4208,12 +4995,19 @@ export interface __ValueTuple_1$views<T1> {
|
|
|
4208
4995
|
CompareTo(obj: unknown): int;
|
|
4209
4996
|
}
|
|
4210
4997
|
|
|
4211
|
-
export interface ValueTuple_1$instance<T1> extends IComparable_1$instance<ValueTuple_1<T1>>, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
4212
|
-
|
|
4213
4998
|
export type ValueTuple_1<T1> = ValueTuple_1$instance<T1> & __ValueTuple_1$views<T1>;
|
|
4214
4999
|
|
|
4215
5000
|
|
|
4216
|
-
export interface ValueTuple_2$instance<T1, T2> {
|
|
5001
|
+
export interface ValueTuple_2$instance<T1, T2> extends IComparable_1$instance<ValueTuple_2<T1, T2>>, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
5002
|
+
readonly __tsonic_type_System_ValueTuple_2: never;
|
|
5003
|
+
|
|
5004
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
5005
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
5006
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
5007
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
5008
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
5009
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
5010
|
+
|
|
4217
5011
|
Item1: T1;
|
|
4218
5012
|
Item2: T2;
|
|
4219
5013
|
CompareTo(other: ValueTuple_2<T1, T2>): int;
|
|
@@ -4242,12 +5036,19 @@ export interface __ValueTuple_2$views<T1, T2> {
|
|
|
4242
5036
|
CompareTo(obj: unknown): int;
|
|
4243
5037
|
}
|
|
4244
5038
|
|
|
4245
|
-
export interface ValueTuple_2$instance<T1, T2> extends IComparable_1$instance<ValueTuple_2<T1, T2>>, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
4246
|
-
|
|
4247
5039
|
export type ValueTuple_2<T1, T2> = ValueTuple_2$instance<T1, T2> & __ValueTuple_2$views<T1, T2>;
|
|
4248
5040
|
|
|
4249
5041
|
|
|
4250
|
-
export interface ValueTuple_3$instance<T1, T2, T3> {
|
|
5042
|
+
export interface ValueTuple_3$instance<T1, T2, T3> extends IComparable_1$instance<ValueTuple_3<T1, T2, T3>>, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
5043
|
+
readonly __tsonic_type_System_ValueTuple_3: never;
|
|
5044
|
+
|
|
5045
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
5046
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
5047
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
5048
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
5049
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
5050
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
5051
|
+
|
|
4251
5052
|
Item1: T1;
|
|
4252
5053
|
Item2: T2;
|
|
4253
5054
|
Item3: T3;
|
|
@@ -4277,12 +5078,19 @@ export interface __ValueTuple_3$views<T1, T2, T3> {
|
|
|
4277
5078
|
CompareTo(obj: unknown): int;
|
|
4278
5079
|
}
|
|
4279
5080
|
|
|
4280
|
-
export interface ValueTuple_3$instance<T1, T2, T3> extends IComparable_1$instance<ValueTuple_3<T1, T2, T3>>, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
4281
|
-
|
|
4282
5081
|
export type ValueTuple_3<T1, T2, T3> = ValueTuple_3$instance<T1, T2, T3> & __ValueTuple_3$views<T1, T2, T3>;
|
|
4283
5082
|
|
|
4284
5083
|
|
|
4285
|
-
export interface ValueTuple_4$instance<T1, T2, T3, T4> {
|
|
5084
|
+
export interface ValueTuple_4$instance<T1, T2, T3, T4> extends IComparable_1$instance<ValueTuple_4<T1, T2, T3, T4>>, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
5085
|
+
readonly __tsonic_type_System_ValueTuple_4: never;
|
|
5086
|
+
|
|
5087
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
5088
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
5089
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
5090
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
5091
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
5092
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
5093
|
+
|
|
4286
5094
|
Item1: T1;
|
|
4287
5095
|
Item2: T2;
|
|
4288
5096
|
Item3: T3;
|
|
@@ -4313,12 +5121,19 @@ export interface __ValueTuple_4$views<T1, T2, T3, T4> {
|
|
|
4313
5121
|
CompareTo(obj: unknown): int;
|
|
4314
5122
|
}
|
|
4315
5123
|
|
|
4316
|
-
export interface ValueTuple_4$instance<T1, T2, T3, T4> extends IComparable_1$instance<ValueTuple_4<T1, T2, T3, T4>>, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
4317
|
-
|
|
4318
5124
|
export type ValueTuple_4<T1, T2, T3, T4> = ValueTuple_4$instance<T1, T2, T3, T4> & __ValueTuple_4$views<T1, T2, T3, T4>;
|
|
4319
5125
|
|
|
4320
5126
|
|
|
4321
|
-
export interface ValueTuple_5$instance<T1, T2, T3, T4, T5> {
|
|
5127
|
+
export interface ValueTuple_5$instance<T1, T2, T3, T4, T5> extends IComparable_1$instance<ValueTuple_5<T1, T2, T3, T4, T5>>, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
5128
|
+
readonly __tsonic_type_System_ValueTuple_5: never;
|
|
5129
|
+
|
|
5130
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
5131
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
5132
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
5133
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
5134
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
5135
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
5136
|
+
|
|
4322
5137
|
Item1: T1;
|
|
4323
5138
|
Item2: T2;
|
|
4324
5139
|
Item3: T3;
|
|
@@ -4350,12 +5165,19 @@ export interface __ValueTuple_5$views<T1, T2, T3, T4, T5> {
|
|
|
4350
5165
|
CompareTo(obj: unknown): int;
|
|
4351
5166
|
}
|
|
4352
5167
|
|
|
4353
|
-
export interface ValueTuple_5$instance<T1, T2, T3, T4, T5> extends IComparable_1$instance<ValueTuple_5<T1, T2, T3, T4, T5>>, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
4354
|
-
|
|
4355
5168
|
export type ValueTuple_5<T1, T2, T3, T4, T5> = ValueTuple_5$instance<T1, T2, T3, T4, T5> & __ValueTuple_5$views<T1, T2, T3, T4, T5>;
|
|
4356
5169
|
|
|
4357
5170
|
|
|
4358
|
-
export interface ValueTuple_6$instance<T1, T2, T3, T4, T5, T6> {
|
|
5171
|
+
export interface ValueTuple_6$instance<T1, T2, T3, T4, T5, T6> extends IComparable_1$instance<ValueTuple_6<T1, T2, T3, T4, T5, T6>>, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
5172
|
+
readonly __tsonic_type_System_ValueTuple_6: never;
|
|
5173
|
+
|
|
5174
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
5175
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
5176
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
5177
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
5178
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
5179
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
5180
|
+
|
|
4359
5181
|
Item1: T1;
|
|
4360
5182
|
Item2: T2;
|
|
4361
5183
|
Item3: T3;
|
|
@@ -4388,12 +5210,19 @@ export interface __ValueTuple_6$views<T1, T2, T3, T4, T5, T6> {
|
|
|
4388
5210
|
CompareTo(obj: unknown): int;
|
|
4389
5211
|
}
|
|
4390
5212
|
|
|
4391
|
-
export interface ValueTuple_6$instance<T1, T2, T3, T4, T5, T6> extends IComparable_1$instance<ValueTuple_6<T1, T2, T3, T4, T5, T6>>, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
4392
|
-
|
|
4393
5213
|
export type ValueTuple_6<T1, T2, T3, T4, T5, T6> = ValueTuple_6$instance<T1, T2, T3, T4, T5, T6> & __ValueTuple_6$views<T1, T2, T3, T4, T5, T6>;
|
|
4394
5214
|
|
|
4395
5215
|
|
|
4396
|
-
export interface ValueTuple_7$instance<T1, T2, T3, T4, T5, T6, T7> {
|
|
5216
|
+
export interface ValueTuple_7$instance<T1, T2, T3, T4, T5, T6, T7> extends IComparable_1$instance<ValueTuple_7<T1, T2, T3, T4, T5, T6, T7>>, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
5217
|
+
readonly __tsonic_type_System_ValueTuple_7: never;
|
|
5218
|
+
|
|
5219
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
5220
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
5221
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
5222
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
5223
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
5224
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
5225
|
+
|
|
4397
5226
|
Item1: T1;
|
|
4398
5227
|
Item2: T2;
|
|
4399
5228
|
Item3: T3;
|
|
@@ -4427,12 +5256,19 @@ export interface __ValueTuple_7$views<T1, T2, T3, T4, T5, T6, T7> {
|
|
|
4427
5256
|
CompareTo(obj: unknown): int;
|
|
4428
5257
|
}
|
|
4429
5258
|
|
|
4430
|
-
export interface ValueTuple_7$instance<T1, T2, T3, T4, T5, T6, T7> extends IComparable_1$instance<ValueTuple_7<T1, T2, T3, T4, T5, T6, T7>>, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
4431
|
-
|
|
4432
5259
|
export type ValueTuple_7<T1, T2, T3, T4, T5, T6, T7> = ValueTuple_7$instance<T1, T2, T3, T4, T5, T6, T7> & __ValueTuple_7$views<T1, T2, T3, T4, T5, T6, T7>;
|
|
4433
5260
|
|
|
4434
5261
|
|
|
4435
|
-
export interface ValueTuple_8$instance<T1, T2, T3, T4, T5, T6, T7, TRest extends unknown> {
|
|
5262
|
+
export interface ValueTuple_8$instance<T1, T2, T3, T4, T5, T6, T7, TRest extends unknown> extends IComparable_1$instance<ValueTuple_8<T1, T2, T3, T4, T5, T6, T7, TRest>>, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
5263
|
+
readonly __tsonic_type_System_ValueTuple_8: never;
|
|
5264
|
+
|
|
5265
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
5266
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
5267
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
5268
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
5269
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
5270
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
5271
|
+
|
|
4436
5272
|
Item1: T1;
|
|
4437
5273
|
Item2: T2;
|
|
4438
5274
|
Item3: T3;
|
|
@@ -4467,12 +5303,12 @@ export interface __ValueTuple_8$views<T1, T2, T3, T4, T5, T6, T7, TRest extends
|
|
|
4467
5303
|
CompareTo(obj: unknown): int;
|
|
4468
5304
|
}
|
|
4469
5305
|
|
|
4470
|
-
export interface ValueTuple_8$instance<T1, T2, T3, T4, T5, T6, T7, TRest extends unknown> extends IComparable_1$instance<ValueTuple_8<T1, T2, T3, T4, T5, T6, T7, TRest>>, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
4471
|
-
|
|
4472
5306
|
export type ValueTuple_8<T1, T2, T3, T4, T5, T6, T7, TRest> = ValueTuple_8$instance<T1, T2, T3, T4, T5, T6, T7, TRest> & __ValueTuple_8$views<T1, T2, T3, T4, T5, T6, T7, TRest>;
|
|
4473
5307
|
|
|
4474
5308
|
|
|
4475
5309
|
export interface Void$instance {
|
|
5310
|
+
readonly __tsonic_type_System_Void: never;
|
|
5311
|
+
|
|
4476
5312
|
}
|
|
4477
5313
|
|
|
4478
5314
|
|
|
@@ -4484,6 +5320,10 @@ export const Void: {
|
|
|
4484
5320
|
export type Void = Void$instance;
|
|
4485
5321
|
|
|
4486
5322
|
export interface AccessViolationException$instance extends SystemException$instance {
|
|
5323
|
+
readonly __tsonic_type_System_AccessViolationException: never;
|
|
5324
|
+
|
|
5325
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5326
|
+
|
|
4487
5327
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
4488
5328
|
}
|
|
4489
5329
|
|
|
@@ -4503,6 +5343,10 @@ export type AccessViolationException = AccessViolationException$instance & __Acc
|
|
|
4503
5343
|
|
|
4504
5344
|
|
|
4505
5345
|
export interface AggregateException$instance extends Exception$instance {
|
|
5346
|
+
readonly __tsonic_type_System_AggregateException: never;
|
|
5347
|
+
|
|
5348
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5349
|
+
|
|
4506
5350
|
readonly InnerExceptions: ReadOnlyCollection_1<Exception>;
|
|
4507
5351
|
readonly Message: string;
|
|
4508
5352
|
Flatten(): AggregateException;
|
|
@@ -4532,6 +5376,8 @@ export type AggregateException = AggregateException$instance & __AggregateExcept
|
|
|
4532
5376
|
|
|
4533
5377
|
|
|
4534
5378
|
export interface AppDomain$instance extends MarshalByRefObject {
|
|
5379
|
+
readonly __tsonic_type_System_AppDomain: never;
|
|
5380
|
+
|
|
4535
5381
|
readonly BaseDirectory: string;
|
|
4536
5382
|
readonly DynamicDirectory: string | undefined;
|
|
4537
5383
|
readonly FriendlyName: string;
|
|
@@ -4601,6 +5447,8 @@ export const AppDomain: {
|
|
|
4601
5447
|
export type AppDomain = AppDomain$instance;
|
|
4602
5448
|
|
|
4603
5449
|
export interface AppDomainSetup$instance {
|
|
5450
|
+
readonly __tsonic_type_System_AppDomainSetup: never;
|
|
5451
|
+
|
|
4604
5452
|
readonly ApplicationBase: string | undefined;
|
|
4605
5453
|
readonly TargetFrameworkName: string | undefined;
|
|
4606
5454
|
}
|
|
@@ -4613,6 +5461,10 @@ export const AppDomainSetup: {
|
|
|
4613
5461
|
export type AppDomainSetup = AppDomainSetup$instance;
|
|
4614
5462
|
|
|
4615
5463
|
export interface AppDomainUnloadedException$instance extends SystemException$instance {
|
|
5464
|
+
readonly __tsonic_type_System_AppDomainUnloadedException: never;
|
|
5465
|
+
|
|
5466
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5467
|
+
|
|
4616
5468
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
4617
5469
|
}
|
|
4618
5470
|
|
|
@@ -4632,6 +5484,10 @@ export type AppDomainUnloadedException = AppDomainUnloadedException$instance & _
|
|
|
4632
5484
|
|
|
4633
5485
|
|
|
4634
5486
|
export interface ApplicationException$instance extends Exception$instance {
|
|
5487
|
+
readonly __tsonic_type_System_ApplicationException: never;
|
|
5488
|
+
|
|
5489
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5490
|
+
|
|
4635
5491
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
4636
5492
|
}
|
|
4637
5493
|
|
|
@@ -4651,6 +5507,8 @@ export type ApplicationException = ApplicationException$instance & __Application
|
|
|
4651
5507
|
|
|
4652
5508
|
|
|
4653
5509
|
export interface ApplicationId$instance {
|
|
5510
|
+
readonly __tsonic_type_System_ApplicationId: never;
|
|
5511
|
+
|
|
4654
5512
|
readonly Culture: string | undefined;
|
|
4655
5513
|
readonly Name: string;
|
|
4656
5514
|
readonly ProcessorArchitecture: string | undefined;
|
|
@@ -4671,6 +5529,10 @@ export const ApplicationId: {
|
|
|
4671
5529
|
export type ApplicationId = ApplicationId$instance;
|
|
4672
5530
|
|
|
4673
5531
|
export interface ArgumentException$instance extends SystemException$instance {
|
|
5532
|
+
readonly __tsonic_type_System_ArgumentException: never;
|
|
5533
|
+
|
|
5534
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5535
|
+
|
|
4674
5536
|
readonly Message: string;
|
|
4675
5537
|
readonly ParamName: string | undefined;
|
|
4676
5538
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -4696,6 +5558,10 @@ export type ArgumentException = ArgumentException$instance & __ArgumentException
|
|
|
4696
5558
|
|
|
4697
5559
|
|
|
4698
5560
|
export interface ArgumentNullException$instance extends ArgumentException$instance {
|
|
5561
|
+
readonly __tsonic_type_System_ArgumentNullException: never;
|
|
5562
|
+
|
|
5563
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5564
|
+
|
|
4699
5565
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
4700
5566
|
}
|
|
4701
5567
|
|
|
@@ -4718,6 +5584,10 @@ export type ArgumentNullException = ArgumentNullException$instance & __ArgumentN
|
|
|
4718
5584
|
|
|
4719
5585
|
|
|
4720
5586
|
export interface ArgumentOutOfRangeException$instance extends ArgumentException$instance {
|
|
5587
|
+
readonly __tsonic_type_System_ArgumentOutOfRangeException: never;
|
|
5588
|
+
|
|
5589
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5590
|
+
|
|
4721
5591
|
readonly ActualValue: unknown | undefined;
|
|
4722
5592
|
readonly Message: string;
|
|
4723
5593
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -4750,6 +5620,10 @@ export type ArgumentOutOfRangeException = ArgumentOutOfRangeException$instance &
|
|
|
4750
5620
|
|
|
4751
5621
|
|
|
4752
5622
|
export interface ArithmeticException$instance extends SystemException$instance {
|
|
5623
|
+
readonly __tsonic_type_System_ArithmeticException: never;
|
|
5624
|
+
|
|
5625
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5626
|
+
|
|
4753
5627
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
4754
5628
|
}
|
|
4755
5629
|
|
|
@@ -4768,7 +5642,16 @@ export interface __ArithmeticException$views {
|
|
|
4768
5642
|
export type ArithmeticException = ArithmeticException$instance & __ArithmeticException$views;
|
|
4769
5643
|
|
|
4770
5644
|
|
|
4771
|
-
export interface Array$instance {
|
|
5645
|
+
export interface Array$instance extends ICloneable$instance {
|
|
5646
|
+
readonly __tsonic_type_System_Array: never;
|
|
5647
|
+
|
|
5648
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
5649
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
5650
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
5651
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
5652
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
5653
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
5654
|
+
|
|
4772
5655
|
readonly IsFixedSize: boolean;
|
|
4773
5656
|
readonly IsReadOnly: boolean;
|
|
4774
5657
|
readonly IsSynchronized: boolean;
|
|
@@ -4893,12 +5776,14 @@ export interface __Array$views {
|
|
|
4893
5776
|
As_ICloneable(): ICloneable$instance;
|
|
4894
5777
|
}
|
|
4895
5778
|
|
|
4896
|
-
export interface Array$instance extends System_Collections_Internal.IStructuralComparable$instance, ICloneable$instance {}
|
|
4897
|
-
|
|
4898
5779
|
export type Array = Array$instance & __Array$views;
|
|
4899
5780
|
|
|
4900
5781
|
|
|
4901
5782
|
export interface ArrayTypeMismatchException$instance extends SystemException$instance {
|
|
5783
|
+
readonly __tsonic_type_System_ArrayTypeMismatchException: never;
|
|
5784
|
+
|
|
5785
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5786
|
+
|
|
4902
5787
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
4903
5788
|
}
|
|
4904
5789
|
|
|
@@ -4918,6 +5803,8 @@ export type ArrayTypeMismatchException = ArrayTypeMismatchException$instance & _
|
|
|
4918
5803
|
|
|
4919
5804
|
|
|
4920
5805
|
export interface AssemblyLoadEventArgs$instance extends EventArgs {
|
|
5806
|
+
readonly __tsonic_type_System_AssemblyLoadEventArgs: never;
|
|
5807
|
+
|
|
4921
5808
|
readonly LoadedAssembly: Assembly;
|
|
4922
5809
|
}
|
|
4923
5810
|
|
|
@@ -4930,6 +5817,8 @@ export const AssemblyLoadEventArgs: {
|
|
|
4930
5817
|
export type AssemblyLoadEventArgs = AssemblyLoadEventArgs$instance;
|
|
4931
5818
|
|
|
4932
5819
|
export interface Attribute$instance {
|
|
5820
|
+
readonly __tsonic_type_System_Attribute: never;
|
|
5821
|
+
|
|
4933
5822
|
readonly TypeId: unknown;
|
|
4934
5823
|
Equals(obj: unknown): boolean;
|
|
4935
5824
|
GetHashCode(): int;
|
|
@@ -4977,6 +5866,8 @@ export const Attribute: (abstract new() => Attribute) & {
|
|
|
4977
5866
|
export type Attribute = Attribute$instance;
|
|
4978
5867
|
|
|
4979
5868
|
export interface AttributeUsageAttribute$instance extends Attribute {
|
|
5869
|
+
readonly __tsonic_type_System_AttributeUsageAttribute: never;
|
|
5870
|
+
|
|
4980
5871
|
AllowMultiple: boolean;
|
|
4981
5872
|
Inherited: boolean;
|
|
4982
5873
|
readonly ValidOn: AttributeTargets;
|
|
@@ -4991,6 +5882,10 @@ export const AttributeUsageAttribute: {
|
|
|
4991
5882
|
export type AttributeUsageAttribute = AttributeUsageAttribute$instance;
|
|
4992
5883
|
|
|
4993
5884
|
export interface BadImageFormatException$instance extends SystemException$instance {
|
|
5885
|
+
readonly __tsonic_type_System_BadImageFormatException: never;
|
|
5886
|
+
|
|
5887
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5888
|
+
|
|
4994
5889
|
readonly FileName: string | undefined;
|
|
4995
5890
|
readonly FusionLog: string | undefined;
|
|
4996
5891
|
readonly Message: string;
|
|
@@ -5016,6 +5911,10 @@ export type BadImageFormatException = BadImageFormatException$instance & __BadIm
|
|
|
5016
5911
|
|
|
5017
5912
|
|
|
5018
5913
|
export interface CannotUnloadAppDomainException$instance extends SystemException$instance {
|
|
5914
|
+
readonly __tsonic_type_System_CannotUnloadAppDomainException: never;
|
|
5915
|
+
|
|
5916
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5917
|
+
|
|
5019
5918
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5020
5919
|
}
|
|
5021
5920
|
|
|
@@ -5034,7 +5933,14 @@ export interface __CannotUnloadAppDomainException$views {
|
|
|
5034
5933
|
export type CannotUnloadAppDomainException = CannotUnloadAppDomainException$instance & __CannotUnloadAppDomainException$views;
|
|
5035
5934
|
|
|
5036
5935
|
|
|
5037
|
-
export interface CharEnumerator$instance extends IDisposable {
|
|
5936
|
+
export interface CharEnumerator$instance extends IDisposable, ICloneable$instance {
|
|
5937
|
+
readonly __tsonic_type_System_CharEnumerator: never;
|
|
5938
|
+
|
|
5939
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
5940
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
5941
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
5942
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
5943
|
+
|
|
5038
5944
|
readonly Current: char;
|
|
5039
5945
|
Clone(): unknown;
|
|
5040
5946
|
Dispose(): void;
|
|
@@ -5053,12 +5959,12 @@ export interface __CharEnumerator$views {
|
|
|
5053
5959
|
As_ICloneable(): ICloneable$instance;
|
|
5054
5960
|
}
|
|
5055
5961
|
|
|
5056
|
-
export interface CharEnumerator$instance extends ICloneable$instance {}
|
|
5057
|
-
|
|
5058
5962
|
export type CharEnumerator = CharEnumerator$instance & __CharEnumerator$views;
|
|
5059
5963
|
|
|
5060
5964
|
|
|
5061
5965
|
export interface CLSCompliantAttribute$instance extends Attribute {
|
|
5966
|
+
readonly __tsonic_type_System_CLSCompliantAttribute: never;
|
|
5967
|
+
|
|
5062
5968
|
readonly IsCompliant: boolean;
|
|
5063
5969
|
}
|
|
5064
5970
|
|
|
@@ -5071,6 +5977,8 @@ export const CLSCompliantAttribute: {
|
|
|
5071
5977
|
export type CLSCompliantAttribute = CLSCompliantAttribute$instance;
|
|
5072
5978
|
|
|
5073
5979
|
export interface ConsoleCancelEventArgs$instance extends EventArgs {
|
|
5980
|
+
readonly __tsonic_type_System_ConsoleCancelEventArgs: never;
|
|
5981
|
+
|
|
5074
5982
|
Cancel: boolean;
|
|
5075
5983
|
readonly SpecialKey: ConsoleSpecialKey;
|
|
5076
5984
|
}
|
|
@@ -5083,6 +5991,8 @@ export const ConsoleCancelEventArgs: {
|
|
|
5083
5991
|
export type ConsoleCancelEventArgs = ConsoleCancelEventArgs$instance;
|
|
5084
5992
|
|
|
5085
5993
|
export interface ContextBoundObject$instance extends MarshalByRefObject {
|
|
5994
|
+
readonly __tsonic_type_System_ContextBoundObject: never;
|
|
5995
|
+
|
|
5086
5996
|
}
|
|
5087
5997
|
|
|
5088
5998
|
|
|
@@ -5093,6 +6003,10 @@ export const ContextBoundObject: (abstract new() => ContextBoundObject) & {
|
|
|
5093
6003
|
export type ContextBoundObject = ContextBoundObject$instance;
|
|
5094
6004
|
|
|
5095
6005
|
export interface ContextMarshalException$instance extends SystemException$instance {
|
|
6006
|
+
readonly __tsonic_type_System_ContextMarshalException: never;
|
|
6007
|
+
|
|
6008
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6009
|
+
|
|
5096
6010
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5097
6011
|
}
|
|
5098
6012
|
|
|
@@ -5112,6 +6026,8 @@ export type ContextMarshalException = ContextMarshalException$instance & __Conte
|
|
|
5112
6026
|
|
|
5113
6027
|
|
|
5114
6028
|
export interface ContextStaticAttribute$instance extends Attribute {
|
|
6029
|
+
readonly __tsonic_type_System_ContextStaticAttribute: never;
|
|
6030
|
+
|
|
5115
6031
|
}
|
|
5116
6032
|
|
|
5117
6033
|
|
|
@@ -5122,7 +6038,16 @@ export const ContextStaticAttribute: {
|
|
|
5122
6038
|
|
|
5123
6039
|
export type ContextStaticAttribute = ContextStaticAttribute$instance;
|
|
5124
6040
|
|
|
5125
|
-
export interface CultureAwareComparer$instance extends StringComparer$instance {
|
|
6041
|
+
export interface CultureAwareComparer$instance extends StringComparer$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
6042
|
+
readonly __tsonic_type_System_CultureAwareComparer: never;
|
|
6043
|
+
|
|
6044
|
+
readonly __tsonic_iface_System_Collections_Generic_IAlternateEqualityComparer_2: never;
|
|
6045
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
6046
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
6047
|
+
readonly __tsonic_iface_System_Collections_IComparer: never;
|
|
6048
|
+
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
6049
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6050
|
+
|
|
5126
6051
|
Compare(x: string, y: string): int;
|
|
5127
6052
|
Compare(x: unknown, y: unknown): int;
|
|
5128
6053
|
Compare(x: unknown, y: unknown): int;
|
|
@@ -5149,12 +6074,14 @@ export interface __CultureAwareComparer$views {
|
|
|
5149
6074
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
5150
6075
|
}
|
|
5151
6076
|
|
|
5152
|
-
export interface CultureAwareComparer$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
5153
|
-
|
|
5154
6077
|
export type CultureAwareComparer = CultureAwareComparer$instance & __CultureAwareComparer$views;
|
|
5155
6078
|
|
|
5156
6079
|
|
|
5157
6080
|
export interface DataMisalignedException$instance extends SystemException$instance {
|
|
6081
|
+
readonly __tsonic_type_System_DataMisalignedException: never;
|
|
6082
|
+
|
|
6083
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6084
|
+
|
|
5158
6085
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5159
6086
|
}
|
|
5160
6087
|
|
|
@@ -5173,7 +6100,12 @@ export interface __DataMisalignedException$views {
|
|
|
5173
6100
|
export type DataMisalignedException = DataMisalignedException$instance & __DataMisalignedException$views;
|
|
5174
6101
|
|
|
5175
6102
|
|
|
5176
|
-
export interface DBNull$instance {
|
|
6103
|
+
export interface DBNull$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
6104
|
+
readonly __tsonic_type_System_DBNull: never;
|
|
6105
|
+
|
|
6106
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
6107
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6108
|
+
|
|
5177
6109
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5178
6110
|
GetTypeCode(): TypeCode;
|
|
5179
6111
|
ToString(): string;
|
|
@@ -5191,12 +6123,15 @@ export interface __DBNull$views {
|
|
|
5191
6123
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
5192
6124
|
}
|
|
5193
6125
|
|
|
5194
|
-
export interface DBNull$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
5195
|
-
|
|
5196
6126
|
export type DBNull = DBNull$instance & __DBNull$views;
|
|
5197
6127
|
|
|
5198
6128
|
|
|
5199
|
-
export interface Delegate$instance {
|
|
6129
|
+
export interface Delegate$instance extends ICloneable$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
6130
|
+
readonly __tsonic_type_System_Delegate: never;
|
|
6131
|
+
|
|
6132
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
6133
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6134
|
+
|
|
5200
6135
|
readonly HasSingleTarget: boolean;
|
|
5201
6136
|
readonly Method: MethodInfo;
|
|
5202
6137
|
readonly Target: unknown | undefined;
|
|
@@ -5238,12 +6173,14 @@ export interface __Delegate$views {
|
|
|
5238
6173
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
5239
6174
|
}
|
|
5240
6175
|
|
|
5241
|
-
export interface Delegate$instance extends ICloneable$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
5242
|
-
|
|
5243
6176
|
export type Delegate = Delegate$instance & __Delegate$views;
|
|
5244
6177
|
|
|
5245
6178
|
|
|
5246
6179
|
export interface DivideByZeroException$instance extends ArithmeticException$instance {
|
|
6180
|
+
readonly __tsonic_type_System_DivideByZeroException: never;
|
|
6181
|
+
|
|
6182
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6183
|
+
|
|
5247
6184
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5248
6185
|
}
|
|
5249
6186
|
|
|
@@ -5263,6 +6200,10 @@ export type DivideByZeroException = DivideByZeroException$instance & __DivideByZ
|
|
|
5263
6200
|
|
|
5264
6201
|
|
|
5265
6202
|
export interface DllNotFoundException$instance extends TypeLoadException$instance {
|
|
6203
|
+
readonly __tsonic_type_System_DllNotFoundException: never;
|
|
6204
|
+
|
|
6205
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6206
|
+
|
|
5266
6207
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5267
6208
|
}
|
|
5268
6209
|
|
|
@@ -5282,6 +6223,10 @@ export type DllNotFoundException = DllNotFoundException$instance & __DllNotFound
|
|
|
5282
6223
|
|
|
5283
6224
|
|
|
5284
6225
|
export interface DuplicateWaitObjectException$instance extends ArgumentException$instance {
|
|
6226
|
+
readonly __tsonic_type_System_DuplicateWaitObjectException: never;
|
|
6227
|
+
|
|
6228
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6229
|
+
|
|
5285
6230
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5286
6231
|
}
|
|
5287
6232
|
|
|
@@ -5302,6 +6247,10 @@ export type DuplicateWaitObjectException = DuplicateWaitObjectException$instance
|
|
|
5302
6247
|
|
|
5303
6248
|
|
|
5304
6249
|
export interface EntryPointNotFoundException$instance extends TypeLoadException$instance {
|
|
6250
|
+
readonly __tsonic_type_System_EntryPointNotFoundException: never;
|
|
6251
|
+
|
|
6252
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6253
|
+
|
|
5305
6254
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5306
6255
|
}
|
|
5307
6256
|
|
|
@@ -5320,7 +6269,14 @@ export interface __EntryPointNotFoundException$views {
|
|
|
5320
6269
|
export type EntryPointNotFoundException = EntryPointNotFoundException$instance & __EntryPointNotFoundException$views;
|
|
5321
6270
|
|
|
5322
6271
|
|
|
5323
|
-
export interface Enum$instance {
|
|
6272
|
+
export interface Enum$instance extends IComparable$instance {
|
|
6273
|
+
readonly __tsonic_type_System_Enum: never;
|
|
6274
|
+
|
|
6275
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
6276
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
6277
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
6278
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
6279
|
+
|
|
5324
6280
|
CompareTo(target: unknown): int;
|
|
5325
6281
|
Equals(obj: unknown): boolean;
|
|
5326
6282
|
GetHashCode(): int;
|
|
@@ -5385,12 +6341,12 @@ export interface __Enum$views {
|
|
|
5385
6341
|
CompareTo(obj: unknown): int;
|
|
5386
6342
|
}
|
|
5387
6343
|
|
|
5388
|
-
export interface Enum$instance extends IComparable$instance {}
|
|
5389
|
-
|
|
5390
6344
|
export type Enum = Enum$instance & __Enum$views;
|
|
5391
6345
|
|
|
5392
6346
|
|
|
5393
6347
|
export interface EventArgs$instance {
|
|
6348
|
+
readonly __tsonic_type_System_EventArgs: never;
|
|
6349
|
+
|
|
5394
6350
|
}
|
|
5395
6351
|
|
|
5396
6352
|
|
|
@@ -5402,7 +6358,11 @@ export const EventArgs: {
|
|
|
5402
6358
|
|
|
5403
6359
|
export type EventArgs = EventArgs$instance;
|
|
5404
6360
|
|
|
5405
|
-
export interface Exception$instance {
|
|
6361
|
+
export interface Exception$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
6362
|
+
readonly __tsonic_type_System_Exception: never;
|
|
6363
|
+
|
|
6364
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6365
|
+
|
|
5406
6366
|
readonly Data: IDictionary;
|
|
5407
6367
|
get HelpLink(): string | undefined;
|
|
5408
6368
|
set HelpLink(value: string | undefined);
|
|
@@ -5431,12 +6391,14 @@ export interface __Exception$views {
|
|
|
5431
6391
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
5432
6392
|
}
|
|
5433
6393
|
|
|
5434
|
-
export interface Exception$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
5435
|
-
|
|
5436
6394
|
export type Exception = Exception$instance & __Exception$views;
|
|
5437
6395
|
|
|
5438
6396
|
|
|
5439
6397
|
export interface ExecutionEngineException$instance extends SystemException$instance {
|
|
6398
|
+
readonly __tsonic_type_System_ExecutionEngineException: never;
|
|
6399
|
+
|
|
6400
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6401
|
+
|
|
5440
6402
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5441
6403
|
}
|
|
5442
6404
|
|
|
@@ -5456,6 +6418,10 @@ export type ExecutionEngineException = ExecutionEngineException$instance & __Exe
|
|
|
5456
6418
|
|
|
5457
6419
|
|
|
5458
6420
|
export interface FieldAccessException$instance extends MemberAccessException$instance {
|
|
6421
|
+
readonly __tsonic_type_System_FieldAccessException: never;
|
|
6422
|
+
|
|
6423
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6424
|
+
|
|
5459
6425
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5460
6426
|
}
|
|
5461
6427
|
|
|
@@ -5475,6 +6441,8 @@ export type FieldAccessException = FieldAccessException$instance & __FieldAccess
|
|
|
5475
6441
|
|
|
5476
6442
|
|
|
5477
6443
|
export interface FileStyleUriParser$instance extends UriParser {
|
|
6444
|
+
readonly __tsonic_type_System_FileStyleUriParser: never;
|
|
6445
|
+
|
|
5478
6446
|
}
|
|
5479
6447
|
|
|
5480
6448
|
|
|
@@ -5486,6 +6454,8 @@ export const FileStyleUriParser: {
|
|
|
5486
6454
|
export type FileStyleUriParser = FileStyleUriParser$instance;
|
|
5487
6455
|
|
|
5488
6456
|
export interface FlagsAttribute$instance extends Attribute {
|
|
6457
|
+
readonly __tsonic_type_System_FlagsAttribute: never;
|
|
6458
|
+
|
|
5489
6459
|
}
|
|
5490
6460
|
|
|
5491
6461
|
|
|
@@ -5497,6 +6467,10 @@ export const FlagsAttribute: {
|
|
|
5497
6467
|
export type FlagsAttribute = FlagsAttribute$instance;
|
|
5498
6468
|
|
|
5499
6469
|
export interface FormatException$instance extends SystemException$instance {
|
|
6470
|
+
readonly __tsonic_type_System_FormatException: never;
|
|
6471
|
+
|
|
6472
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6473
|
+
|
|
5500
6474
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5501
6475
|
}
|
|
5502
6476
|
|
|
@@ -5516,6 +6490,10 @@ export type FormatException = FormatException$instance & __FormatException$views
|
|
|
5516
6490
|
|
|
5517
6491
|
|
|
5518
6492
|
export interface FormattableString$instance {
|
|
6493
|
+
readonly __tsonic_type_System_FormattableString: never;
|
|
6494
|
+
|
|
6495
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
6496
|
+
|
|
5519
6497
|
readonly ArgumentCount: int;
|
|
5520
6498
|
readonly Format: string;
|
|
5521
6499
|
GetArgument(index: int): unknown | undefined;
|
|
@@ -5539,6 +6517,8 @@ export type FormattableString = FormattableString$instance & __FormattableString
|
|
|
5539
6517
|
|
|
5540
6518
|
|
|
5541
6519
|
export interface FtpStyleUriParser$instance extends UriParser {
|
|
6520
|
+
readonly __tsonic_type_System_FtpStyleUriParser: never;
|
|
6521
|
+
|
|
5542
6522
|
}
|
|
5543
6523
|
|
|
5544
6524
|
|
|
@@ -5550,6 +6530,8 @@ export const FtpStyleUriParser: {
|
|
|
5550
6530
|
export type FtpStyleUriParser = FtpStyleUriParser$instance;
|
|
5551
6531
|
|
|
5552
6532
|
export interface GenericUriParser$instance extends UriParser {
|
|
6533
|
+
readonly __tsonic_type_System_GenericUriParser: never;
|
|
6534
|
+
|
|
5553
6535
|
}
|
|
5554
6536
|
|
|
5555
6537
|
|
|
@@ -5561,6 +6543,8 @@ export const GenericUriParser: {
|
|
|
5561
6543
|
export type GenericUriParser = GenericUriParser$instance;
|
|
5562
6544
|
|
|
5563
6545
|
export interface GopherStyleUriParser$instance extends UriParser {
|
|
6546
|
+
readonly __tsonic_type_System_GopherStyleUriParser: never;
|
|
6547
|
+
|
|
5564
6548
|
}
|
|
5565
6549
|
|
|
5566
6550
|
|
|
@@ -5572,6 +6556,8 @@ export const GopherStyleUriParser: {
|
|
|
5572
6556
|
export type GopherStyleUriParser = GopherStyleUriParser$instance;
|
|
5573
6557
|
|
|
5574
6558
|
export interface HttpStyleUriParser$instance extends UriParser {
|
|
6559
|
+
readonly __tsonic_type_System_HttpStyleUriParser: never;
|
|
6560
|
+
|
|
5575
6561
|
}
|
|
5576
6562
|
|
|
5577
6563
|
|
|
@@ -5583,6 +6569,10 @@ export const HttpStyleUriParser: {
|
|
|
5583
6569
|
export type HttpStyleUriParser = HttpStyleUriParser$instance;
|
|
5584
6570
|
|
|
5585
6571
|
export interface IndexOutOfRangeException$instance extends SystemException$instance {
|
|
6572
|
+
readonly __tsonic_type_System_IndexOutOfRangeException: never;
|
|
6573
|
+
|
|
6574
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6575
|
+
|
|
5586
6576
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5587
6577
|
}
|
|
5588
6578
|
|
|
@@ -5602,6 +6592,10 @@ export type IndexOutOfRangeException = IndexOutOfRangeException$instance & __Ind
|
|
|
5602
6592
|
|
|
5603
6593
|
|
|
5604
6594
|
export interface InsufficientExecutionStackException$instance extends SystemException$instance {
|
|
6595
|
+
readonly __tsonic_type_System_InsufficientExecutionStackException: never;
|
|
6596
|
+
|
|
6597
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6598
|
+
|
|
5605
6599
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5606
6600
|
}
|
|
5607
6601
|
|
|
@@ -5621,6 +6615,10 @@ export type InsufficientExecutionStackException = InsufficientExecutionStackExce
|
|
|
5621
6615
|
|
|
5622
6616
|
|
|
5623
6617
|
export interface InsufficientMemoryException$instance extends OutOfMemoryException$instance {
|
|
6618
|
+
readonly __tsonic_type_System_InsufficientMemoryException: never;
|
|
6619
|
+
|
|
6620
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6621
|
+
|
|
5624
6622
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5625
6623
|
}
|
|
5626
6624
|
|
|
@@ -5640,6 +6638,10 @@ export type InsufficientMemoryException = InsufficientMemoryException$instance &
|
|
|
5640
6638
|
|
|
5641
6639
|
|
|
5642
6640
|
export interface InvalidCastException$instance extends SystemException$instance {
|
|
6641
|
+
readonly __tsonic_type_System_InvalidCastException: never;
|
|
6642
|
+
|
|
6643
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6644
|
+
|
|
5643
6645
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5644
6646
|
}
|
|
5645
6647
|
|
|
@@ -5660,6 +6662,10 @@ export type InvalidCastException = InvalidCastException$instance & __InvalidCast
|
|
|
5660
6662
|
|
|
5661
6663
|
|
|
5662
6664
|
export interface InvalidOperationException$instance extends SystemException$instance {
|
|
6665
|
+
readonly __tsonic_type_System_InvalidOperationException: never;
|
|
6666
|
+
|
|
6667
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6668
|
+
|
|
5663
6669
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5664
6670
|
}
|
|
5665
6671
|
|
|
@@ -5679,6 +6685,10 @@ export type InvalidOperationException = InvalidOperationException$instance & __I
|
|
|
5679
6685
|
|
|
5680
6686
|
|
|
5681
6687
|
export interface InvalidProgramException$instance extends SystemException$instance {
|
|
6688
|
+
readonly __tsonic_type_System_InvalidProgramException: never;
|
|
6689
|
+
|
|
6690
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6691
|
+
|
|
5682
6692
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5683
6693
|
}
|
|
5684
6694
|
|
|
@@ -5698,6 +6708,10 @@ export type InvalidProgramException = InvalidProgramException$instance & __Inval
|
|
|
5698
6708
|
|
|
5699
6709
|
|
|
5700
6710
|
export interface InvalidTimeZoneException$instance extends Exception$instance {
|
|
6711
|
+
readonly __tsonic_type_System_InvalidTimeZoneException: never;
|
|
6712
|
+
|
|
6713
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6714
|
+
|
|
5701
6715
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5702
6716
|
}
|
|
5703
6717
|
|
|
@@ -5717,6 +6731,8 @@ export type InvalidTimeZoneException = InvalidTimeZoneException$instance & __Inv
|
|
|
5717
6731
|
|
|
5718
6732
|
|
|
5719
6733
|
export interface Lazy_1$instance<T> {
|
|
6734
|
+
readonly __tsonic_type_System_Lazy_1: never;
|
|
6735
|
+
|
|
5720
6736
|
readonly IsValueCreated: boolean;
|
|
5721
6737
|
readonly Value: T;
|
|
5722
6738
|
ToString(): string | undefined;
|
|
@@ -5737,6 +6753,8 @@ export const Lazy_1: {
|
|
|
5737
6753
|
export type Lazy_1<T> = Lazy_1$instance<T>;
|
|
5738
6754
|
|
|
5739
6755
|
export interface Lazy_2$instance<T, TMetadata> extends Lazy_1<T> {
|
|
6756
|
+
readonly __tsonic_type_System_Lazy_2: never;
|
|
6757
|
+
|
|
5740
6758
|
readonly Metadata: TMetadata;
|
|
5741
6759
|
}
|
|
5742
6760
|
|
|
@@ -5754,6 +6772,8 @@ export const Lazy_2: {
|
|
|
5754
6772
|
export type Lazy_2<T, TMetadata> = Lazy_2$instance<T, TMetadata>;
|
|
5755
6773
|
|
|
5756
6774
|
export interface LdapStyleUriParser$instance extends UriParser {
|
|
6775
|
+
readonly __tsonic_type_System_LdapStyleUriParser: never;
|
|
6776
|
+
|
|
5757
6777
|
}
|
|
5758
6778
|
|
|
5759
6779
|
|
|
@@ -5765,6 +6785,8 @@ export const LdapStyleUriParser: {
|
|
|
5765
6785
|
export type LdapStyleUriParser = LdapStyleUriParser$instance;
|
|
5766
6786
|
|
|
5767
6787
|
export interface LoaderOptimizationAttribute$instance extends Attribute {
|
|
6788
|
+
readonly __tsonic_type_System_LoaderOptimizationAttribute: never;
|
|
6789
|
+
|
|
5768
6790
|
readonly Value: LoaderOptimization;
|
|
5769
6791
|
}
|
|
5770
6792
|
|
|
@@ -5778,6 +6800,8 @@ export const LoaderOptimizationAttribute: {
|
|
|
5778
6800
|
export type LoaderOptimizationAttribute = LoaderOptimizationAttribute$instance;
|
|
5779
6801
|
|
|
5780
6802
|
export interface LocalDataStoreSlot$instance {
|
|
6803
|
+
readonly __tsonic_type_System_LocalDataStoreSlot: never;
|
|
6804
|
+
|
|
5781
6805
|
Finalize(): void;
|
|
5782
6806
|
}
|
|
5783
6807
|
|
|
@@ -5789,6 +6813,8 @@ export const LocalDataStoreSlot: {
|
|
|
5789
6813
|
export type LocalDataStoreSlot = LocalDataStoreSlot$instance;
|
|
5790
6814
|
|
|
5791
6815
|
export interface MarshalByRefObject$instance {
|
|
6816
|
+
readonly __tsonic_type_System_MarshalByRefObject: never;
|
|
6817
|
+
|
|
5792
6818
|
GetLifetimeService(): unknown;
|
|
5793
6819
|
InitializeLifetimeService(): unknown;
|
|
5794
6820
|
}
|
|
@@ -5801,6 +6827,10 @@ export const MarshalByRefObject: (abstract new() => MarshalByRefObject) & {
|
|
|
5801
6827
|
export type MarshalByRefObject = MarshalByRefObject$instance;
|
|
5802
6828
|
|
|
5803
6829
|
export interface MemberAccessException$instance extends SystemException$instance {
|
|
6830
|
+
readonly __tsonic_type_System_MemberAccessException: never;
|
|
6831
|
+
|
|
6832
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6833
|
+
|
|
5804
6834
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5805
6835
|
}
|
|
5806
6836
|
|
|
@@ -5820,6 +6850,10 @@ export type MemberAccessException = MemberAccessException$instance & __MemberAcc
|
|
|
5820
6850
|
|
|
5821
6851
|
|
|
5822
6852
|
export interface MethodAccessException$instance extends MemberAccessException$instance {
|
|
6853
|
+
readonly __tsonic_type_System_MethodAccessException: never;
|
|
6854
|
+
|
|
6855
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6856
|
+
|
|
5823
6857
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5824
6858
|
}
|
|
5825
6859
|
|
|
@@ -5839,6 +6873,10 @@ export type MethodAccessException = MethodAccessException$instance & __MethodAcc
|
|
|
5839
6873
|
|
|
5840
6874
|
|
|
5841
6875
|
export interface MissingFieldException$instance extends MissingMemberException$instance {
|
|
6876
|
+
readonly __tsonic_type_System_MissingFieldException: never;
|
|
6877
|
+
|
|
6878
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6879
|
+
|
|
5842
6880
|
readonly Message: string;
|
|
5843
6881
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5844
6882
|
}
|
|
@@ -5860,6 +6898,10 @@ export type MissingFieldException = MissingFieldException$instance & __MissingFi
|
|
|
5860
6898
|
|
|
5861
6899
|
|
|
5862
6900
|
export interface MissingMemberException$instance extends MemberAccessException$instance {
|
|
6901
|
+
readonly __tsonic_type_System_MissingMemberException: never;
|
|
6902
|
+
|
|
6903
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6904
|
+
|
|
5863
6905
|
readonly Message: string;
|
|
5864
6906
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5865
6907
|
}
|
|
@@ -5881,6 +6923,10 @@ export type MissingMemberException = MissingMemberException$instance & __Missing
|
|
|
5881
6923
|
|
|
5882
6924
|
|
|
5883
6925
|
export interface MissingMethodException$instance extends MissingMemberException$instance {
|
|
6926
|
+
readonly __tsonic_type_System_MissingMethodException: never;
|
|
6927
|
+
|
|
6928
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6929
|
+
|
|
5884
6930
|
readonly Message: string;
|
|
5885
6931
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5886
6932
|
}
|
|
@@ -5902,6 +6948,8 @@ export type MissingMethodException = MissingMethodException$instance & __Missing
|
|
|
5902
6948
|
|
|
5903
6949
|
|
|
5904
6950
|
export interface MTAThreadAttribute$instance extends Attribute {
|
|
6951
|
+
readonly __tsonic_type_System_MTAThreadAttribute: never;
|
|
6952
|
+
|
|
5905
6953
|
}
|
|
5906
6954
|
|
|
5907
6955
|
|
|
@@ -5913,6 +6961,11 @@ export const MTAThreadAttribute: {
|
|
|
5913
6961
|
export type MTAThreadAttribute = MTAThreadAttribute$instance;
|
|
5914
6962
|
|
|
5915
6963
|
export interface MulticastDelegate$instance extends Function {
|
|
6964
|
+
readonly __tsonic_type_System_MulticastDelegate: never;
|
|
6965
|
+
|
|
6966
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
6967
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6968
|
+
|
|
5916
6969
|
Clone(): unknown;
|
|
5917
6970
|
CombineImpl(follow: Function): Function;
|
|
5918
6971
|
Equals(obj: unknown): boolean;
|
|
@@ -5937,6 +6990,10 @@ export type MulticastDelegate = MulticastDelegate$instance & __MulticastDelegate
|
|
|
5937
6990
|
|
|
5938
6991
|
|
|
5939
6992
|
export interface MulticastNotSupportedException$instance extends SystemException$instance {
|
|
6993
|
+
readonly __tsonic_type_System_MulticastNotSupportedException: never;
|
|
6994
|
+
|
|
6995
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6996
|
+
|
|
5940
6997
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
5941
6998
|
}
|
|
5942
6999
|
|
|
@@ -5956,6 +7013,8 @@ export type MulticastNotSupportedException = MulticastNotSupportedException$inst
|
|
|
5956
7013
|
|
|
5957
7014
|
|
|
5958
7015
|
export interface NetPipeStyleUriParser$instance extends UriParser {
|
|
7016
|
+
readonly __tsonic_type_System_NetPipeStyleUriParser: never;
|
|
7017
|
+
|
|
5959
7018
|
}
|
|
5960
7019
|
|
|
5961
7020
|
|
|
@@ -5967,6 +7026,8 @@ export const NetPipeStyleUriParser: {
|
|
|
5967
7026
|
export type NetPipeStyleUriParser = NetPipeStyleUriParser$instance;
|
|
5968
7027
|
|
|
5969
7028
|
export interface NetTcpStyleUriParser$instance extends UriParser {
|
|
7029
|
+
readonly __tsonic_type_System_NetTcpStyleUriParser: never;
|
|
7030
|
+
|
|
5970
7031
|
}
|
|
5971
7032
|
|
|
5972
7033
|
|
|
@@ -5978,6 +7039,8 @@ export const NetTcpStyleUriParser: {
|
|
|
5978
7039
|
export type NetTcpStyleUriParser = NetTcpStyleUriParser$instance;
|
|
5979
7040
|
|
|
5980
7041
|
export interface NewsStyleUriParser$instance extends UriParser {
|
|
7042
|
+
readonly __tsonic_type_System_NewsStyleUriParser: never;
|
|
7043
|
+
|
|
5981
7044
|
}
|
|
5982
7045
|
|
|
5983
7046
|
|
|
@@ -5989,6 +7052,8 @@ export const NewsStyleUriParser: {
|
|
|
5989
7052
|
export type NewsStyleUriParser = NewsStyleUriParser$instance;
|
|
5990
7053
|
|
|
5991
7054
|
export interface NonSerializedAttribute$instance extends Attribute {
|
|
7055
|
+
readonly __tsonic_type_System_NonSerializedAttribute: never;
|
|
7056
|
+
|
|
5992
7057
|
}
|
|
5993
7058
|
|
|
5994
7059
|
|
|
@@ -6000,6 +7065,10 @@ export const NonSerializedAttribute: {
|
|
|
6000
7065
|
export type NonSerializedAttribute = NonSerializedAttribute$instance;
|
|
6001
7066
|
|
|
6002
7067
|
export interface NotFiniteNumberException$instance extends ArithmeticException$instance {
|
|
7068
|
+
readonly __tsonic_type_System_NotFiniteNumberException: never;
|
|
7069
|
+
|
|
7070
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7071
|
+
|
|
6003
7072
|
readonly OffendingNumber: double;
|
|
6004
7073
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
6005
7074
|
}
|
|
@@ -6023,6 +7092,10 @@ export type NotFiniteNumberException = NotFiniteNumberException$instance & __Not
|
|
|
6023
7092
|
|
|
6024
7093
|
|
|
6025
7094
|
export interface NotImplementedException$instance extends SystemException$instance {
|
|
7095
|
+
readonly __tsonic_type_System_NotImplementedException: never;
|
|
7096
|
+
|
|
7097
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7098
|
+
|
|
6026
7099
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
6027
7100
|
}
|
|
6028
7101
|
|
|
@@ -6042,6 +7115,10 @@ export type NotImplementedException = NotImplementedException$instance & __NotIm
|
|
|
6042
7115
|
|
|
6043
7116
|
|
|
6044
7117
|
export interface NotSupportedException$instance extends SystemException$instance {
|
|
7118
|
+
readonly __tsonic_type_System_NotSupportedException: never;
|
|
7119
|
+
|
|
7120
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7121
|
+
|
|
6045
7122
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
6046
7123
|
}
|
|
6047
7124
|
|
|
@@ -6061,6 +7138,10 @@ export type NotSupportedException = NotSupportedException$instance & __NotSuppor
|
|
|
6061
7138
|
|
|
6062
7139
|
|
|
6063
7140
|
export interface NullReferenceException$instance extends SystemException$instance {
|
|
7141
|
+
readonly __tsonic_type_System_NullReferenceException: never;
|
|
7142
|
+
|
|
7143
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7144
|
+
|
|
6064
7145
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
6065
7146
|
}
|
|
6066
7147
|
|
|
@@ -6080,6 +7161,8 @@ export type NullReferenceException = NullReferenceException$instance & __NullRef
|
|
|
6080
7161
|
|
|
6081
7162
|
|
|
6082
7163
|
export interface Object$instance {
|
|
7164
|
+
readonly __tsonic_type_System_Object: never;
|
|
7165
|
+
|
|
6083
7166
|
Equals(obj: unknown): boolean;
|
|
6084
7167
|
Finalize(): void;
|
|
6085
7168
|
GetHashCode(): int;
|
|
@@ -6098,6 +7181,10 @@ export const Object: {
|
|
|
6098
7181
|
export type Object = Object$instance;
|
|
6099
7182
|
|
|
6100
7183
|
export interface ObjectDisposedException$instance extends InvalidOperationException$instance {
|
|
7184
|
+
readonly __tsonic_type_System_ObjectDisposedException: never;
|
|
7185
|
+
|
|
7186
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7187
|
+
|
|
6101
7188
|
readonly Message: string;
|
|
6102
7189
|
readonly ObjectName: string;
|
|
6103
7190
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6121,6 +7208,8 @@ export type ObjectDisposedException = ObjectDisposedException$instance & __Objec
|
|
|
6121
7208
|
|
|
6122
7209
|
|
|
6123
7210
|
export interface ObsoleteAttribute$instance extends Attribute {
|
|
7211
|
+
readonly __tsonic_type_System_ObsoleteAttribute: never;
|
|
7212
|
+
|
|
6124
7213
|
get DiagnosticId(): string | undefined;
|
|
6125
7214
|
set DiagnosticId(value: string | undefined);
|
|
6126
7215
|
readonly IsError: boolean;
|
|
@@ -6139,7 +7228,12 @@ export const ObsoleteAttribute: {
|
|
|
6139
7228
|
|
|
6140
7229
|
export type ObsoleteAttribute = ObsoleteAttribute$instance;
|
|
6141
7230
|
|
|
6142
|
-
export interface OperatingSystem$instance {
|
|
7231
|
+
export interface OperatingSystem$instance extends ICloneable$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
7232
|
+
readonly __tsonic_type_System_OperatingSystem: never;
|
|
7233
|
+
|
|
7234
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
7235
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7236
|
+
|
|
6143
7237
|
readonly Platform: PlatformID;
|
|
6144
7238
|
readonly ServicePack: string;
|
|
6145
7239
|
readonly Version: Version;
|
|
@@ -6181,12 +7275,14 @@ export interface __OperatingSystem$views {
|
|
|
6181
7275
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
6182
7276
|
}
|
|
6183
7277
|
|
|
6184
|
-
export interface OperatingSystem$instance extends ICloneable$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
6185
|
-
|
|
6186
7278
|
export type OperatingSystem = OperatingSystem$instance & __OperatingSystem$views;
|
|
6187
7279
|
|
|
6188
7280
|
|
|
6189
7281
|
export interface OperationCanceledException$instance extends SystemException$instance {
|
|
7282
|
+
readonly __tsonic_type_System_OperationCanceledException: never;
|
|
7283
|
+
|
|
7284
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7285
|
+
|
|
6190
7286
|
CancellationToken: CancellationToken;
|
|
6191
7287
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
6192
7288
|
}
|
|
@@ -6210,6 +7306,14 @@ export type OperationCanceledException = OperationCanceledException$instance & _
|
|
|
6210
7306
|
|
|
6211
7307
|
|
|
6212
7308
|
export interface OrdinalComparer$instance extends StringComparer$instance {
|
|
7309
|
+
readonly __tsonic_type_System_OrdinalComparer: never;
|
|
7310
|
+
|
|
7311
|
+
readonly __tsonic_iface_System_Collections_Generic_IAlternateEqualityComparer_2: never;
|
|
7312
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
7313
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
7314
|
+
readonly __tsonic_iface_System_Collections_IComparer: never;
|
|
7315
|
+
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
7316
|
+
|
|
6213
7317
|
Compare(x: string, y: string): int;
|
|
6214
7318
|
Compare(x: unknown, y: unknown): int;
|
|
6215
7319
|
Compare(x: unknown, y: unknown): int;
|
|
@@ -6238,6 +7342,10 @@ export type OrdinalComparer = OrdinalComparer$instance & __OrdinalComparer$views
|
|
|
6238
7342
|
|
|
6239
7343
|
|
|
6240
7344
|
export interface OutOfMemoryException$instance extends SystemException$instance {
|
|
7345
|
+
readonly __tsonic_type_System_OutOfMemoryException: never;
|
|
7346
|
+
|
|
7347
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7348
|
+
|
|
6241
7349
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
6242
7350
|
}
|
|
6243
7351
|
|
|
@@ -6257,6 +7365,10 @@ export type OutOfMemoryException = OutOfMemoryException$instance & __OutOfMemory
|
|
|
6257
7365
|
|
|
6258
7366
|
|
|
6259
7367
|
export interface OverflowException$instance extends ArithmeticException$instance {
|
|
7368
|
+
readonly __tsonic_type_System_OverflowException: never;
|
|
7369
|
+
|
|
7370
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7371
|
+
|
|
6260
7372
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
6261
7373
|
}
|
|
6262
7374
|
|
|
@@ -6276,6 +7388,8 @@ export type OverflowException = OverflowException$instance & __OverflowException
|
|
|
6276
7388
|
|
|
6277
7389
|
|
|
6278
7390
|
export interface ParamArrayAttribute$instance extends Attribute {
|
|
7391
|
+
readonly __tsonic_type_System_ParamArrayAttribute: never;
|
|
7392
|
+
|
|
6279
7393
|
}
|
|
6280
7394
|
|
|
6281
7395
|
|
|
@@ -6287,6 +7401,10 @@ export const ParamArrayAttribute: {
|
|
|
6287
7401
|
export type ParamArrayAttribute = ParamArrayAttribute$instance;
|
|
6288
7402
|
|
|
6289
7403
|
export interface PlatformNotSupportedException$instance extends NotSupportedException$instance {
|
|
7404
|
+
readonly __tsonic_type_System_PlatformNotSupportedException: never;
|
|
7405
|
+
|
|
7406
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7407
|
+
|
|
6290
7408
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
6291
7409
|
}
|
|
6292
7410
|
|
|
@@ -6305,7 +7423,11 @@ export interface __PlatformNotSupportedException$views {
|
|
|
6305
7423
|
export type PlatformNotSupportedException = PlatformNotSupportedException$instance & __PlatformNotSupportedException$views;
|
|
6306
7424
|
|
|
6307
7425
|
|
|
6308
|
-
export interface Progress_1$instance<T> {
|
|
7426
|
+
export interface Progress_1$instance<T> extends IProgress_1$instance<T> {
|
|
7427
|
+
readonly __tsonic_type_System_Progress_1: never;
|
|
7428
|
+
|
|
7429
|
+
readonly __tsonic_iface_System_IProgress_1: never;
|
|
7430
|
+
|
|
6309
7431
|
OnReport(value: T): void;
|
|
6310
7432
|
}
|
|
6311
7433
|
|
|
@@ -6320,12 +7442,12 @@ export interface __Progress_1$views<T> {
|
|
|
6320
7442
|
As_IProgress_1(): IProgress_1$instance<T>;
|
|
6321
7443
|
}
|
|
6322
7444
|
|
|
6323
|
-
export interface Progress_1$instance<T> extends IProgress_1$instance<T> {}
|
|
6324
|
-
|
|
6325
7445
|
export type Progress_1<T> = Progress_1$instance<T> & __Progress_1$views<T>;
|
|
6326
7446
|
|
|
6327
7447
|
|
|
6328
7448
|
export interface Random$instance {
|
|
7449
|
+
readonly __tsonic_type_System_Random: never;
|
|
7450
|
+
|
|
6329
7451
|
GetHexString(stringLength: int, lowercase?: boolean): string;
|
|
6330
7452
|
GetHexString(destination: Span_1<Char>, lowercase?: boolean): void;
|
|
6331
7453
|
GetItems<T>(choices: ReadOnlySpan_1<T>, destination: Span_1<T>): void;
|
|
@@ -6358,6 +7480,10 @@ export const Random: {
|
|
|
6358
7480
|
export type Random = Random$instance;
|
|
6359
7481
|
|
|
6360
7482
|
export interface RankException$instance extends SystemException$instance {
|
|
7483
|
+
readonly __tsonic_type_System_RankException: never;
|
|
7484
|
+
|
|
7485
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7486
|
+
|
|
6361
7487
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
6362
7488
|
}
|
|
6363
7489
|
|
|
@@ -6377,6 +7503,8 @@ export type RankException = RankException$instance & __RankException$views;
|
|
|
6377
7503
|
|
|
6378
7504
|
|
|
6379
7505
|
export interface ResolveEventArgs$instance extends EventArgs {
|
|
7506
|
+
readonly __tsonic_type_System_ResolveEventArgs: never;
|
|
7507
|
+
|
|
6380
7508
|
readonly Name: string;
|
|
6381
7509
|
readonly RequestingAssembly: Assembly | undefined;
|
|
6382
7510
|
}
|
|
@@ -6391,6 +7519,8 @@ export const ResolveEventArgs: {
|
|
|
6391
7519
|
export type ResolveEventArgs = ResolveEventArgs$instance;
|
|
6392
7520
|
|
|
6393
7521
|
export interface SerializableAttribute$instance extends Attribute {
|
|
7522
|
+
readonly __tsonic_type_System_SerializableAttribute: never;
|
|
7523
|
+
|
|
6394
7524
|
}
|
|
6395
7525
|
|
|
6396
7526
|
|
|
@@ -6402,6 +7532,10 @@ export const SerializableAttribute: {
|
|
|
6402
7532
|
export type SerializableAttribute = SerializableAttribute$instance;
|
|
6403
7533
|
|
|
6404
7534
|
export interface StackOverflowException$instance extends SystemException$instance {
|
|
7535
|
+
readonly __tsonic_type_System_StackOverflowException: never;
|
|
7536
|
+
|
|
7537
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7538
|
+
|
|
6405
7539
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
6406
7540
|
}
|
|
6407
7541
|
|
|
@@ -6421,6 +7555,8 @@ export type StackOverflowException = StackOverflowException$instance & __StackOv
|
|
|
6421
7555
|
|
|
6422
7556
|
|
|
6423
7557
|
export interface STAThreadAttribute$instance extends Attribute {
|
|
7558
|
+
readonly __tsonic_type_System_STAThreadAttribute: never;
|
|
7559
|
+
|
|
6424
7560
|
}
|
|
6425
7561
|
|
|
6426
7562
|
|
|
@@ -6432,6 +7568,18 @@ export const STAThreadAttribute: {
|
|
|
6432
7568
|
export type STAThreadAttribute = STAThreadAttribute$instance;
|
|
6433
7569
|
|
|
6434
7570
|
export interface String$instance {
|
|
7571
|
+
readonly __tsonic_type_System_String: never;
|
|
7572
|
+
|
|
7573
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
7574
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
7575
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
7576
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
7577
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
7578
|
+
readonly __tsonic_iface_System_IConvertible: never;
|
|
7579
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
7580
|
+
readonly __tsonic_iface_System_IParsable_1: never;
|
|
7581
|
+
readonly __tsonic_iface_System_ISpanParsable_1: never;
|
|
7582
|
+
|
|
6435
7583
|
readonly [index: number]: char;
|
|
6436
7584
|
readonly Length: int;
|
|
6437
7585
|
Clone(): unknown;
|
|
@@ -6638,12 +7786,17 @@ export interface __String$views {
|
|
|
6638
7786
|
CompareTo(obj: unknown): int;
|
|
6639
7787
|
}
|
|
6640
7788
|
|
|
6641
|
-
export interface String$instance extends ICloneable$instance, IComparable$instance, ISpanParsable_1$instance<String> {}
|
|
6642
|
-
|
|
6643
7789
|
export type String = string & String$instance & __String$views;
|
|
6644
7790
|
|
|
6645
7791
|
|
|
6646
7792
|
export interface StringComparer$instance {
|
|
7793
|
+
readonly __tsonic_type_System_StringComparer: never;
|
|
7794
|
+
|
|
7795
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
7796
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
7797
|
+
readonly __tsonic_iface_System_Collections_IComparer: never;
|
|
7798
|
+
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
7799
|
+
|
|
6647
7800
|
Compare(x: unknown, y: unknown): int;
|
|
6648
7801
|
Compare(x: string, y: string): int;
|
|
6649
7802
|
Equals(x: unknown, y: unknown): boolean;
|
|
@@ -6675,12 +7828,14 @@ export interface __StringComparer$views {
|
|
|
6675
7828
|
As_IEqualityComparer(): System_Collections_Internal.IEqualityComparer$instance;
|
|
6676
7829
|
}
|
|
6677
7830
|
|
|
6678
|
-
export interface StringComparer$instance extends System_Collections_Internal.IComparer$instance {}
|
|
6679
|
-
|
|
6680
7831
|
export type StringComparer = StringComparer$instance & __StringComparer$views;
|
|
6681
7832
|
|
|
6682
7833
|
|
|
6683
7834
|
export interface SystemException$instance extends Exception$instance {
|
|
7835
|
+
readonly __tsonic_type_System_SystemException: never;
|
|
7836
|
+
|
|
7837
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7838
|
+
|
|
6684
7839
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
6685
7840
|
}
|
|
6686
7841
|
|
|
@@ -6700,6 +7855,8 @@ export type SystemException = SystemException$instance & __SystemException$views
|
|
|
6700
7855
|
|
|
6701
7856
|
|
|
6702
7857
|
export interface ThreadStaticAttribute$instance extends Attribute {
|
|
7858
|
+
readonly __tsonic_type_System_ThreadStaticAttribute: never;
|
|
7859
|
+
|
|
6703
7860
|
}
|
|
6704
7861
|
|
|
6705
7862
|
|
|
@@ -6711,6 +7868,10 @@ export const ThreadStaticAttribute: {
|
|
|
6711
7868
|
export type ThreadStaticAttribute = ThreadStaticAttribute$instance;
|
|
6712
7869
|
|
|
6713
7870
|
export interface TimeoutException$instance extends SystemException$instance {
|
|
7871
|
+
readonly __tsonic_type_System_TimeoutException: never;
|
|
7872
|
+
|
|
7873
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7874
|
+
|
|
6714
7875
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
6715
7876
|
}
|
|
6716
7877
|
|
|
@@ -6730,6 +7891,8 @@ export type TimeoutException = TimeoutException$instance & __TimeoutException$vi
|
|
|
6730
7891
|
|
|
6731
7892
|
|
|
6732
7893
|
export interface TimeProvider$instance {
|
|
7894
|
+
readonly __tsonic_type_System_TimeProvider: never;
|
|
7895
|
+
|
|
6733
7896
|
readonly LocalTimeZone: TimeZoneInfo;
|
|
6734
7897
|
readonly TimestampFrequency: long;
|
|
6735
7898
|
CreateTimer(callback: TimerCallback, state: unknown, dueTime: TimeSpan, period: TimeSpan): ITimer;
|
|
@@ -6749,6 +7912,8 @@ export const TimeProvider: (abstract new() => TimeProvider) & {
|
|
|
6749
7912
|
export type TimeProvider = TimeProvider$instance;
|
|
6750
7913
|
|
|
6751
7914
|
export interface TimeZone$instance {
|
|
7915
|
+
readonly __tsonic_type_System_TimeZone: never;
|
|
7916
|
+
|
|
6752
7917
|
readonly DaylightName: string;
|
|
6753
7918
|
readonly StandardName: string;
|
|
6754
7919
|
GetDaylightChanges(year: int): DaylightTime;
|
|
@@ -6767,7 +7932,13 @@ export const TimeZone: (abstract new() => TimeZone) & {
|
|
|
6767
7932
|
|
|
6768
7933
|
export type TimeZone = TimeZone$instance;
|
|
6769
7934
|
|
|
6770
|
-
export interface TimeZoneInfo$instance {
|
|
7935
|
+
export interface TimeZoneInfo$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
7936
|
+
readonly __tsonic_type_System_TimeZoneInfo: never;
|
|
7937
|
+
|
|
7938
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
7939
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
7940
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7941
|
+
|
|
6771
7942
|
readonly BaseUtcOffset: TimeSpan;
|
|
6772
7943
|
readonly DaylightName: string;
|
|
6773
7944
|
readonly DisplayName: string;
|
|
@@ -6830,12 +8001,16 @@ export interface __TimeZoneInfo$views {
|
|
|
6830
8001
|
Equals(other: TimeZoneInfo): boolean;
|
|
6831
8002
|
}
|
|
6832
8003
|
|
|
6833
|
-
export interface TimeZoneInfo$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
6834
|
-
|
|
6835
8004
|
export type TimeZoneInfo = TimeZoneInfo$instance & __TimeZoneInfo$views;
|
|
6836
8005
|
|
|
6837
8006
|
|
|
6838
|
-
export interface TimeZoneInfo_AdjustmentRule$instance {
|
|
8007
|
+
export interface TimeZoneInfo_AdjustmentRule$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
8008
|
+
readonly __tsonic_type_System_TimeZoneInfo_AdjustmentRule: never;
|
|
8009
|
+
|
|
8010
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
8011
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
8012
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8013
|
+
|
|
6839
8014
|
readonly BaseUtcOffsetDelta: TimeSpan;
|
|
6840
8015
|
readonly DateEnd: DateTime;
|
|
6841
8016
|
readonly DateStart: DateTime;
|
|
@@ -6863,12 +8038,14 @@ export interface __TimeZoneInfo_AdjustmentRule$views {
|
|
|
6863
8038
|
Equals(other: TimeZoneInfo_AdjustmentRule): boolean;
|
|
6864
8039
|
}
|
|
6865
8040
|
|
|
6866
|
-
export interface TimeZoneInfo_AdjustmentRule$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
6867
|
-
|
|
6868
8041
|
export type TimeZoneInfo_AdjustmentRule = TimeZoneInfo_AdjustmentRule$instance & __TimeZoneInfo_AdjustmentRule$views;
|
|
6869
8042
|
|
|
6870
8043
|
|
|
6871
8044
|
export interface TimeZoneNotFoundException$instance extends Exception$instance {
|
|
8045
|
+
readonly __tsonic_type_System_TimeZoneNotFoundException: never;
|
|
8046
|
+
|
|
8047
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8048
|
+
|
|
6872
8049
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
6873
8050
|
}
|
|
6874
8051
|
|
|
@@ -6887,7 +8064,14 @@ export interface __TimeZoneNotFoundException$views {
|
|
|
6887
8064
|
export type TimeZoneNotFoundException = TimeZoneNotFoundException$instance & __TimeZoneNotFoundException$views;
|
|
6888
8065
|
|
|
6889
8066
|
|
|
6890
|
-
export interface Tuple_1$instance<T1> {
|
|
8067
|
+
export interface Tuple_1$instance<T1> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
8068
|
+
readonly __tsonic_type_System_Tuple_1: never;
|
|
8069
|
+
|
|
8070
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
8071
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
8072
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
8073
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
8074
|
+
|
|
6891
8075
|
readonly Item1: T1;
|
|
6892
8076
|
Equals(obj: unknown): boolean;
|
|
6893
8077
|
GetHashCode(): int;
|
|
@@ -6910,12 +8094,17 @@ export interface __Tuple_1$views<T1> {
|
|
|
6910
8094
|
CompareTo(obj: unknown): int;
|
|
6911
8095
|
}
|
|
6912
8096
|
|
|
6913
|
-
export interface Tuple_1$instance<T1> extends System_Collections_Internal.IStructuralComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
6914
|
-
|
|
6915
8097
|
export type Tuple_1<T1> = Tuple_1$instance<T1> & __Tuple_1$views<T1>;
|
|
6916
8098
|
|
|
6917
8099
|
|
|
6918
|
-
export interface Tuple_2$instance<T1, T2> {
|
|
8100
|
+
export interface Tuple_2$instance<T1, T2> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
8101
|
+
readonly __tsonic_type_System_Tuple_2: never;
|
|
8102
|
+
|
|
8103
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
8104
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
8105
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
8106
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
8107
|
+
|
|
6919
8108
|
readonly Item1: T1;
|
|
6920
8109
|
readonly Item2: T2;
|
|
6921
8110
|
Equals(obj: unknown): boolean;
|
|
@@ -6939,12 +8128,17 @@ export interface __Tuple_2$views<T1, T2> {
|
|
|
6939
8128
|
CompareTo(obj: unknown): int;
|
|
6940
8129
|
}
|
|
6941
8130
|
|
|
6942
|
-
export interface Tuple_2$instance<T1, T2> extends System_Collections_Internal.IStructuralComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
6943
|
-
|
|
6944
8131
|
export type Tuple_2<T1, T2> = Tuple_2$instance<T1, T2> & __Tuple_2$views<T1, T2>;
|
|
6945
8132
|
|
|
6946
8133
|
|
|
6947
|
-
export interface Tuple_3$instance<T1, T2, T3> {
|
|
8134
|
+
export interface Tuple_3$instance<T1, T2, T3> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
8135
|
+
readonly __tsonic_type_System_Tuple_3: never;
|
|
8136
|
+
|
|
8137
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
8138
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
8139
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
8140
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
8141
|
+
|
|
6948
8142
|
readonly Item1: T1;
|
|
6949
8143
|
readonly Item2: T2;
|
|
6950
8144
|
readonly Item3: T3;
|
|
@@ -6969,12 +8163,17 @@ export interface __Tuple_3$views<T1, T2, T3> {
|
|
|
6969
8163
|
CompareTo(obj: unknown): int;
|
|
6970
8164
|
}
|
|
6971
8165
|
|
|
6972
|
-
export interface Tuple_3$instance<T1, T2, T3> extends System_Collections_Internal.IStructuralComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
6973
|
-
|
|
6974
8166
|
export type Tuple_3<T1, T2, T3> = Tuple_3$instance<T1, T2, T3> & __Tuple_3$views<T1, T2, T3>;
|
|
6975
8167
|
|
|
6976
8168
|
|
|
6977
|
-
export interface Tuple_4$instance<T1, T2, T3, T4> {
|
|
8169
|
+
export interface Tuple_4$instance<T1, T2, T3, T4> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
8170
|
+
readonly __tsonic_type_System_Tuple_4: never;
|
|
8171
|
+
|
|
8172
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
8173
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
8174
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
8175
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
8176
|
+
|
|
6978
8177
|
readonly Item1: T1;
|
|
6979
8178
|
readonly Item2: T2;
|
|
6980
8179
|
readonly Item3: T3;
|
|
@@ -7000,12 +8199,17 @@ export interface __Tuple_4$views<T1, T2, T3, T4> {
|
|
|
7000
8199
|
CompareTo(obj: unknown): int;
|
|
7001
8200
|
}
|
|
7002
8201
|
|
|
7003
|
-
export interface Tuple_4$instance<T1, T2, T3, T4> extends System_Collections_Internal.IStructuralComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
7004
|
-
|
|
7005
8202
|
export type Tuple_4<T1, T2, T3, T4> = Tuple_4$instance<T1, T2, T3, T4> & __Tuple_4$views<T1, T2, T3, T4>;
|
|
7006
8203
|
|
|
7007
8204
|
|
|
7008
|
-
export interface Tuple_5$instance<T1, T2, T3, T4, T5> {
|
|
8205
|
+
export interface Tuple_5$instance<T1, T2, T3, T4, T5> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
8206
|
+
readonly __tsonic_type_System_Tuple_5: never;
|
|
8207
|
+
|
|
8208
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
8209
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
8210
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
8211
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
8212
|
+
|
|
7009
8213
|
readonly Item1: T1;
|
|
7010
8214
|
readonly Item2: T2;
|
|
7011
8215
|
readonly Item3: T3;
|
|
@@ -7032,12 +8236,17 @@ export interface __Tuple_5$views<T1, T2, T3, T4, T5> {
|
|
|
7032
8236
|
CompareTo(obj: unknown): int;
|
|
7033
8237
|
}
|
|
7034
8238
|
|
|
7035
|
-
export interface Tuple_5$instance<T1, T2, T3, T4, T5> extends System_Collections_Internal.IStructuralComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
7036
|
-
|
|
7037
8239
|
export type Tuple_5<T1, T2, T3, T4, T5> = Tuple_5$instance<T1, T2, T3, T4, T5> & __Tuple_5$views<T1, T2, T3, T4, T5>;
|
|
7038
8240
|
|
|
7039
8241
|
|
|
7040
|
-
export interface Tuple_6$instance<T1, T2, T3, T4, T5, T6> {
|
|
8242
|
+
export interface Tuple_6$instance<T1, T2, T3, T4, T5, T6> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
8243
|
+
readonly __tsonic_type_System_Tuple_6: never;
|
|
8244
|
+
|
|
8245
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
8246
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
8247
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
8248
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
8249
|
+
|
|
7041
8250
|
readonly Item1: T1;
|
|
7042
8251
|
readonly Item2: T2;
|
|
7043
8252
|
readonly Item3: T3;
|
|
@@ -7065,12 +8274,17 @@ export interface __Tuple_6$views<T1, T2, T3, T4, T5, T6> {
|
|
|
7065
8274
|
CompareTo(obj: unknown): int;
|
|
7066
8275
|
}
|
|
7067
8276
|
|
|
7068
|
-
export interface Tuple_6$instance<T1, T2, T3, T4, T5, T6> extends System_Collections_Internal.IStructuralComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
7069
|
-
|
|
7070
8277
|
export type Tuple_6<T1, T2, T3, T4, T5, T6> = Tuple_6$instance<T1, T2, T3, T4, T5, T6> & __Tuple_6$views<T1, T2, T3, T4, T5, T6>;
|
|
7071
8278
|
|
|
7072
8279
|
|
|
7073
|
-
export interface Tuple_7$instance<T1, T2, T3, T4, T5, T6, T7> {
|
|
8280
|
+
export interface Tuple_7$instance<T1, T2, T3, T4, T5, T6, T7> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
8281
|
+
readonly __tsonic_type_System_Tuple_7: never;
|
|
8282
|
+
|
|
8283
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
8284
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
8285
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
8286
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
8287
|
+
|
|
7074
8288
|
readonly Item1: T1;
|
|
7075
8289
|
readonly Item2: T2;
|
|
7076
8290
|
readonly Item3: T3;
|
|
@@ -7099,12 +8313,17 @@ export interface __Tuple_7$views<T1, T2, T3, T4, T5, T6, T7> {
|
|
|
7099
8313
|
CompareTo(obj: unknown): int;
|
|
7100
8314
|
}
|
|
7101
8315
|
|
|
7102
|
-
export interface Tuple_7$instance<T1, T2, T3, T4, T5, T6, T7> extends System_Collections_Internal.IStructuralComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
7103
|
-
|
|
7104
8316
|
export type Tuple_7<T1, T2, T3, T4, T5, T6, T7> = Tuple_7$instance<T1, T2, T3, T4, T5, T6, T7> & __Tuple_7$views<T1, T2, T3, T4, T5, T6, T7>;
|
|
7105
8317
|
|
|
7106
8318
|
|
|
7107
|
-
export interface Tuple_8$instance<T1, T2, T3, T4, T5, T6, T7, TRest> {
|
|
8319
|
+
export interface Tuple_8$instance<T1, T2, T3, T4, T5, T6, T7, TRest> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {
|
|
8320
|
+
readonly __tsonic_type_System_Tuple_8: never;
|
|
8321
|
+
|
|
8322
|
+
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
8323
|
+
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
8324
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
8325
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
8326
|
+
|
|
7108
8327
|
readonly Item1: T1;
|
|
7109
8328
|
readonly Item2: T2;
|
|
7110
8329
|
readonly Item3: T3;
|
|
@@ -7134,12 +8353,15 @@ export interface __Tuple_8$views<T1, T2, T3, T4, T5, T6, T7, TRest> {
|
|
|
7134
8353
|
CompareTo(obj: unknown): int;
|
|
7135
8354
|
}
|
|
7136
8355
|
|
|
7137
|
-
export interface Tuple_8$instance<T1, T2, T3, T4, T5, T6, T7, TRest> extends System_Collections_Internal.IStructuralComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
7138
|
-
|
|
7139
8356
|
export type Tuple_8<T1, T2, T3, T4, T5, T6, T7, TRest> = Tuple_8$instance<T1, T2, T3, T4, T5, T6, T7, TRest> & __Tuple_8$views<T1, T2, T3, T4, T5, T6, T7, TRest>;
|
|
7140
8357
|
|
|
7141
8358
|
|
|
7142
8359
|
export interface Type$instance extends MemberInfo {
|
|
8360
|
+
readonly __tsonic_type_System_Type: never;
|
|
8361
|
+
|
|
8362
|
+
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
8363
|
+
readonly __tsonic_iface_System_Reflection_IReflect: never;
|
|
8364
|
+
|
|
7143
8365
|
readonly Assembly: Assembly;
|
|
7144
8366
|
readonly AssemblyQualifiedName: string | undefined;
|
|
7145
8367
|
readonly Attributes: TypeAttributes;
|
|
@@ -7359,6 +8581,10 @@ export type Type = Type$instance & __Type$views;
|
|
|
7359
8581
|
|
|
7360
8582
|
|
|
7361
8583
|
export interface TypeAccessException$instance extends TypeLoadException$instance {
|
|
8584
|
+
readonly __tsonic_type_System_TypeAccessException: never;
|
|
8585
|
+
|
|
8586
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8587
|
+
|
|
7362
8588
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
7363
8589
|
}
|
|
7364
8590
|
|
|
@@ -7378,6 +8604,10 @@ export type TypeAccessException = TypeAccessException$instance & __TypeAccessExc
|
|
|
7378
8604
|
|
|
7379
8605
|
|
|
7380
8606
|
export interface TypeInitializationException$instance extends SystemException$instance {
|
|
8607
|
+
readonly __tsonic_type_System_TypeInitializationException: never;
|
|
8608
|
+
|
|
8609
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8610
|
+
|
|
7381
8611
|
readonly TypeName: string;
|
|
7382
8612
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
7383
8613
|
}
|
|
@@ -7396,6 +8626,10 @@ export type TypeInitializationException = TypeInitializationException$instance &
|
|
|
7396
8626
|
|
|
7397
8627
|
|
|
7398
8628
|
export interface TypeLoadException$instance extends SystemException$instance {
|
|
8629
|
+
readonly __tsonic_type_System_TypeLoadException: never;
|
|
8630
|
+
|
|
8631
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8632
|
+
|
|
7399
8633
|
readonly Message: string;
|
|
7400
8634
|
readonly TypeName: string;
|
|
7401
8635
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -7417,6 +8651,10 @@ export type TypeLoadException = TypeLoadException$instance & __TypeLoadException
|
|
|
7417
8651
|
|
|
7418
8652
|
|
|
7419
8653
|
export interface TypeUnloadedException$instance extends SystemException$instance {
|
|
8654
|
+
readonly __tsonic_type_System_TypeUnloadedException: never;
|
|
8655
|
+
|
|
8656
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8657
|
+
|
|
7420
8658
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
7421
8659
|
}
|
|
7422
8660
|
|
|
@@ -7436,6 +8674,10 @@ export type TypeUnloadedException = TypeUnloadedException$instance & __TypeUnloa
|
|
|
7436
8674
|
|
|
7437
8675
|
|
|
7438
8676
|
export interface UnauthorizedAccessException$instance extends SystemException$instance {
|
|
8677
|
+
readonly __tsonic_type_System_UnauthorizedAccessException: never;
|
|
8678
|
+
|
|
8679
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8680
|
+
|
|
7439
8681
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
7440
8682
|
}
|
|
7441
8683
|
|
|
@@ -7455,6 +8697,8 @@ export type UnauthorizedAccessException = UnauthorizedAccessException$instance &
|
|
|
7455
8697
|
|
|
7456
8698
|
|
|
7457
8699
|
export interface UnhandledExceptionEventArgs$instance extends EventArgs {
|
|
8700
|
+
readonly __tsonic_type_System_UnhandledExceptionEventArgs: never;
|
|
8701
|
+
|
|
7458
8702
|
readonly ExceptionObject: unknown;
|
|
7459
8703
|
readonly IsTerminating: boolean;
|
|
7460
8704
|
}
|
|
@@ -7467,7 +8711,12 @@ export const UnhandledExceptionEventArgs: {
|
|
|
7467
8711
|
|
|
7468
8712
|
export type UnhandledExceptionEventArgs = UnhandledExceptionEventArgs$instance;
|
|
7469
8713
|
|
|
7470
|
-
export interface UnitySerializationHolder$instance {
|
|
8714
|
+
export interface UnitySerializationHolder$instance extends System_Runtime_Serialization_Internal.IObjectReference$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
8715
|
+
readonly __tsonic_type_System_UnitySerializationHolder: never;
|
|
8716
|
+
|
|
8717
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IObjectReference: never;
|
|
8718
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8719
|
+
|
|
7471
8720
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
7472
8721
|
GetRealObject(context: StreamingContext): unknown;
|
|
7473
8722
|
}
|
|
@@ -7483,12 +8732,17 @@ export interface __UnitySerializationHolder$views {
|
|
|
7483
8732
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
7484
8733
|
}
|
|
7485
8734
|
|
|
7486
|
-
export interface UnitySerializationHolder$instance extends System_Runtime_Serialization_Internal.IObjectReference$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
7487
|
-
|
|
7488
8735
|
export type UnitySerializationHolder = UnitySerializationHolder$instance & __UnitySerializationHolder$views;
|
|
7489
8736
|
|
|
7490
8737
|
|
|
7491
|
-
export interface Uri$instance {
|
|
8738
|
+
export interface Uri$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
8739
|
+
readonly __tsonic_type_System_Uri: never;
|
|
8740
|
+
|
|
8741
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
8742
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
8743
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
8744
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8745
|
+
|
|
7492
8746
|
readonly AbsolutePath: string;
|
|
7493
8747
|
readonly AbsoluteUri: string;
|
|
7494
8748
|
readonly Authority: string;
|
|
@@ -7592,12 +8846,12 @@ export interface __Uri$views {
|
|
|
7592
8846
|
Equals(other: Uri): boolean;
|
|
7593
8847
|
}
|
|
7594
8848
|
|
|
7595
|
-
export interface Uri$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
7596
|
-
|
|
7597
8849
|
export type Uri = Uri$instance & __Uri$views;
|
|
7598
8850
|
|
|
7599
8851
|
|
|
7600
8852
|
export interface UriBuilder$instance {
|
|
8853
|
+
readonly __tsonic_type_System_UriBuilder: never;
|
|
8854
|
+
|
|
7601
8855
|
Fragment: string;
|
|
7602
8856
|
Host: string;
|
|
7603
8857
|
Password: string;
|
|
@@ -7627,6 +8881,10 @@ export const UriBuilder: {
|
|
|
7627
8881
|
export type UriBuilder = UriBuilder$instance;
|
|
7628
8882
|
|
|
7629
8883
|
export interface UriFormatException$instance extends FormatException$instance {
|
|
8884
|
+
readonly __tsonic_type_System_UriFormatException: never;
|
|
8885
|
+
|
|
8886
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8887
|
+
|
|
7630
8888
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
7631
8889
|
}
|
|
7632
8890
|
|
|
@@ -7646,6 +8904,8 @@ export type UriFormatException = UriFormatException$instance & __UriFormatExcept
|
|
|
7646
8904
|
|
|
7647
8905
|
|
|
7648
8906
|
export interface UriParser$instance {
|
|
8907
|
+
readonly __tsonic_type_System_UriParser: never;
|
|
8908
|
+
|
|
7649
8909
|
GetComponents(uri: Uri, components: UriComponents, format: UriFormat): string;
|
|
7650
8910
|
InitializeAndValidate(uri: Uri, parsingError: UriFormatException): void;
|
|
7651
8911
|
IsBaseOf(baseUri: Uri, relativeUri: Uri): boolean;
|
|
@@ -7665,6 +8925,8 @@ export const UriParser: (abstract new() => UriParser) & {
|
|
|
7665
8925
|
export type UriParser = UriParser$instance;
|
|
7666
8926
|
|
|
7667
8927
|
export interface UriTypeConverter$instance extends TypeConverter {
|
|
8928
|
+
readonly __tsonic_type_System_UriTypeConverter: never;
|
|
8929
|
+
|
|
7668
8930
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
7669
8931
|
CanConvertFrom(sourceType: Type): boolean;
|
|
7670
8932
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -7686,6 +8948,8 @@ export const UriTypeConverter: {
|
|
|
7686
8948
|
export type UriTypeConverter = UriTypeConverter$instance;
|
|
7687
8949
|
|
|
7688
8950
|
export interface ValueType$instance {
|
|
8951
|
+
readonly __tsonic_type_System_ValueType: never;
|
|
8952
|
+
|
|
7689
8953
|
Equals(obj: unknown): boolean;
|
|
7690
8954
|
GetHashCode(): int;
|
|
7691
8955
|
ToString(): string | undefined;
|
|
@@ -7699,6 +8963,17 @@ export const ValueType: (abstract new() => ValueType) & {
|
|
|
7699
8963
|
export type ValueType = ValueType$instance;
|
|
7700
8964
|
|
|
7701
8965
|
export interface Version$instance {
|
|
8966
|
+
readonly __tsonic_type_System_Version: never;
|
|
8967
|
+
|
|
8968
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
8969
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
8970
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
8971
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
8972
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
8973
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
8974
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
8975
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
8976
|
+
|
|
7702
8977
|
readonly Build: int;
|
|
7703
8978
|
readonly Major: int;
|
|
7704
8979
|
readonly MajorRevision: short;
|
|
@@ -7751,12 +9026,14 @@ export interface __Version$views {
|
|
|
7751
9026
|
TryFormat(utf8Destination: Span_1<Byte>, bytesWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
7752
9027
|
}
|
|
7753
9028
|
|
|
7754
|
-
export interface Version$instance extends ICloneable$instance, IComparable$instance, IUtf8SpanParsable_1$instance<Version> {}
|
|
7755
|
-
|
|
7756
9029
|
export type Version = Version$instance & __Version$views;
|
|
7757
9030
|
|
|
7758
9031
|
|
|
7759
|
-
export interface WeakReference$instance {
|
|
9032
|
+
export interface WeakReference$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
9033
|
+
readonly __tsonic_type_System_WeakReference: never;
|
|
9034
|
+
|
|
9035
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
9036
|
+
|
|
7760
9037
|
readonly IsAlive: boolean;
|
|
7761
9038
|
get Target(): unknown | undefined;
|
|
7762
9039
|
set Target(value: unknown | undefined);
|
|
@@ -7776,12 +9053,14 @@ export interface __WeakReference$views {
|
|
|
7776
9053
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
7777
9054
|
}
|
|
7778
9055
|
|
|
7779
|
-
export interface WeakReference$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
7780
|
-
|
|
7781
9056
|
export type WeakReference = WeakReference$instance & __WeakReference$views;
|
|
7782
9057
|
|
|
7783
9058
|
|
|
7784
|
-
export interface WeakReference_1$instance<T> {
|
|
9059
|
+
export interface WeakReference_1$instance<T> extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
9060
|
+
readonly __tsonic_type_System_WeakReference_1: never;
|
|
9061
|
+
|
|
9062
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
9063
|
+
|
|
7785
9064
|
Finalize(): void;
|
|
7786
9065
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
7787
9066
|
SetTarget(target: T): void;
|
|
@@ -7799,8 +9078,6 @@ export interface __WeakReference_1$views<T> {
|
|
|
7799
9078
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
7800
9079
|
}
|
|
7801
9080
|
|
|
7802
|
-
export interface WeakReference_1$instance<T> extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
7803
|
-
|
|
7804
9081
|
export type WeakReference_1<T> = WeakReference_1$instance<T> & __WeakReference_1$views<T>;
|
|
7805
9082
|
|
|
7806
9083
|
|