@tsonic/dotnet 10.0.5 → 10.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +6 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +38 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +58 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +8 -0
- package/Microsoft.Win32/internal/index.d.ts +3 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +34 -0
- package/System/internal/index.d.ts +413 -159
- package/System.Buffers/internal/index.d.ts +24 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +4 -0
- package/System.Collections/internal/index.d.ts +35 -21
- package/System.Collections.Concurrent/internal/index.d.ts +17 -3
- package/System.Collections.Frozen/internal/index.d.ts +12 -0
- package/System.Collections.Generic/internal/index.d.ts +121 -33
- package/System.Collections.Immutable/internal/index.d.ts +44 -0
- package/System.Collections.ObjectModel/internal/index.d.ts +20 -6
- package/System.Collections.Specialized/internal/index.d.ts +30 -6
- package/System.ComponentModel/internal/index.d.ts +269 -21
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +73 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +47 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +22 -0
- package/System.Data/internal/index.d.ts +110 -18
- package/System.Data.Common/internal/index.d.ts +64 -30
- package/System.Data.SqlTypes/internal/index.d.ts +58 -48
- package/System.Diagnostics/internal/index.d.ts +143 -9
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +26 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +31 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +8 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +40 -6
- package/System.Drawing/internal/index.d.ts +24 -0
- package/System.Dynamic/internal/index.d.ts +37 -5
- package/System.Formats.Asn1/internal/index.d.ts +13 -3
- package/System.Formats.Tar/internal/index.d.ts +20 -6
- package/System.Globalization/internal/index.d.ts +64 -18
- package/System.IO/internal/index.d.ts +74 -18
- package/System.IO.Compression/internal/index.d.ts +25 -9
- package/System.IO.Enumeration/internal/index.d.ts +6 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +9 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +6 -0
- package/System.IO.Pipelines/internal/index.d.ts +18 -2
- package/System.IO.Pipes/internal/index.d.ts +16 -0
- package/System.Linq/internal/index.d.ts +17 -3
- package/System.Linq.Expressions/internal/index.d.ts +86 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +109 -19
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +50 -0
- package/System.Net.Http.Headers/internal/index.d.ts +78 -60
- package/System.Net.Http.Json/internal/index.d.ts +2 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +31 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +62 -0
- package/System.Net.Quic/internal/index.d.ts +22 -6
- package/System.Net.Security/internal/index.d.ts +27 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +38 -6
- package/System.Net.WebSockets/internal/index.d.ts +23 -3
- package/System.Numerics/internal/index.d.ts +24 -6
- package/System.Reflection/internal/index.d.ts +134 -30
- package/System.Reflection.Emit/internal/index.d.ts +45 -9
- package/System.Reflection.Metadata/internal/index.d.ts +321 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +76 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +37 -3
- package/System.Resources/internal/index.d.ts +16 -0
- package/System.Runtime/internal/index.d.ts +12 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +275 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +174 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +40 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +55 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +57 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +12 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +7 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +75 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +3 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +4 -0
- package/System.Runtime.Versioning/internal/index.d.ts +26 -0
- package/System.Security/internal/index.d.ts +28 -6
- package/System.Security.AccessControl/internal/index.d.ts +94 -0
- package/System.Security.Authentication/internal/index.d.ts +4 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +9 -3
- package/System.Security.Claims/internal/index.d.ts +8 -6
- package/System.Security.Cryptography/internal/index.d.ts +298 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +69 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +4 -0
- package/System.Security.Principal/internal/index.d.ts +19 -5
- package/System.Text/internal/index.d.ts +68 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +32 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +10 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +54 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +23 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +33 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +108 -24
- package/System.Threading.Channels/internal/index.d.ts +18 -0
- package/System.Threading.Tasks/internal/index.d.ts +34 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +32 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +2 -0
- package/System.Timers/internal/index.d.ts +7 -3
- package/System.Transactions/internal/index.d.ts +37 -15
- package/System.Web/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +106 -18
- package/System.Xml.Linq/internal/index.d.ts +41 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +148 -0
- package/System.Xml.Serialization/internal/index.d.ts +116 -0
- package/System.Xml.XPath/internal/index.d.ts +14 -6
- package/System.Xml.Xsl/internal/index.d.ts +16 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +88 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -832,6 +832,8 @@ export interface IUtf8SpanParsable_1$instance<TSelf extends IUtf8SpanParsable_1<
|
|
|
832
832
|
export type IUtf8SpanParsable_1<TSelf extends IUtf8SpanParsable_1<TSelf>> = IUtf8SpanParsable_1$instance<TSelf>;
|
|
833
833
|
|
|
834
834
|
export interface ArgIterator$instance {
|
|
835
|
+
readonly __tsonic_type_System_ArgIterator: never;
|
|
836
|
+
|
|
835
837
|
End(): void;
|
|
836
838
|
Equals(o: unknown): boolean;
|
|
837
839
|
GetHashCode(): int;
|
|
@@ -851,6 +853,8 @@ export const ArgIterator: {
|
|
|
851
853
|
export type ArgIterator = ArgIterator$instance;
|
|
852
854
|
|
|
853
855
|
export interface ArraySegment_1$instance<T> {
|
|
856
|
+
readonly __tsonic_type_System_ArraySegment_1: never;
|
|
857
|
+
|
|
854
858
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
855
859
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
856
860
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -894,6 +898,8 @@ export type ArraySegment_1<T> = ArraySegment_1$instance<T> & __ArraySegment_1$vi
|
|
|
894
898
|
|
|
895
899
|
|
|
896
900
|
export interface ArraySegment_1_Enumerator$instance<T> extends IDisposable {
|
|
901
|
+
readonly __tsonic_type_System_ArraySegment_1_Enumerator: never;
|
|
902
|
+
|
|
897
903
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
898
904
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
899
905
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -919,6 +925,8 @@ export type ArraySegment_1_Enumerator<T> = ArraySegment_1_Enumerator$instance<T>
|
|
|
919
925
|
|
|
920
926
|
|
|
921
927
|
export interface Boolean$instance {
|
|
928
|
+
readonly __tsonic_type_System_Boolean: never;
|
|
929
|
+
|
|
922
930
|
readonly __tsonic_iface_System_IComparable: never;
|
|
923
931
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
924
932
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
@@ -962,12 +970,12 @@ export interface __Boolean$views {
|
|
|
962
970
|
CompareTo(obj: unknown): int;
|
|
963
971
|
}
|
|
964
972
|
|
|
965
|
-
export interface Boolean$instance extends ISpanParsable_1$instance<Boolean> {}
|
|
966
|
-
|
|
967
973
|
export type Boolean = boolean | (boolean & Boolean$instance & __Boolean$views);
|
|
968
974
|
|
|
969
975
|
|
|
970
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
|
+
|
|
971
979
|
readonly __tsonic_iface_System_IComparable: never;
|
|
972
980
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
973
981
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
@@ -1086,12 +1094,12 @@ export interface __Byte$views {
|
|
|
1086
1094
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
1087
1095
|
}
|
|
1088
1096
|
|
|
1089
|
-
export interface Byte$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Byte> {}
|
|
1090
|
-
|
|
1091
1097
|
export type Byte = number & Byte$instance & __Byte$views;
|
|
1092
1098
|
|
|
1093
1099
|
|
|
1094
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
|
+
|
|
1095
1103
|
readonly __tsonic_iface_System_IComparable: never;
|
|
1096
1104
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
1097
1105
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
@@ -1228,12 +1236,12 @@ export interface __Char$views {
|
|
|
1228
1236
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
1229
1237
|
}
|
|
1230
1238
|
|
|
1231
|
-
export interface Char$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Char> {}
|
|
1232
|
-
|
|
1233
1239
|
export type Char = string & Char$instance & __Char$views;
|
|
1234
1240
|
|
|
1235
1241
|
|
|
1236
1242
|
export interface ConsoleKeyInfo$instance {
|
|
1243
|
+
readonly __tsonic_type_System_ConsoleKeyInfo: never;
|
|
1244
|
+
|
|
1237
1245
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1238
1246
|
|
|
1239
1247
|
readonly Key: ConsoleKey;
|
|
@@ -1261,6 +1269,8 @@ export type ConsoleKeyInfo = ConsoleKeyInfo$instance & __ConsoleKeyInfo$views;
|
|
|
1261
1269
|
|
|
1262
1270
|
|
|
1263
1271
|
export interface DateOnly$instance {
|
|
1272
|
+
readonly __tsonic_type_System_DateOnly: never;
|
|
1273
|
+
|
|
1264
1274
|
readonly __tsonic_iface_System_IComparable: never;
|
|
1265
1275
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
1266
1276
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -1350,12 +1360,12 @@ export interface __DateOnly$views {
|
|
|
1350
1360
|
TryFormat(utf8Destination: Span_1<Byte>, bytesWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
1351
1361
|
}
|
|
1352
1362
|
|
|
1353
|
-
export interface DateOnly$instance extends IComparable_1$instance<DateOnly>, ISpanParsable_1$instance<DateOnly> {}
|
|
1354
|
-
|
|
1355
1363
|
export type DateOnly = DateOnly$instance & __DateOnly$views;
|
|
1356
1364
|
|
|
1357
1365
|
|
|
1358
1366
|
export interface DateTime$instance {
|
|
1367
|
+
readonly __tsonic_type_System_DateTime: never;
|
|
1368
|
+
|
|
1359
1369
|
readonly __tsonic_iface_System_IComparable: never;
|
|
1360
1370
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
1361
1371
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
@@ -1500,12 +1510,12 @@ export interface __DateTime$views {
|
|
|
1500
1510
|
TryFormat(utf8Destination: Span_1<Byte>, bytesWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
1501
1511
|
}
|
|
1502
1512
|
|
|
1503
|
-
export interface DateTime$instance extends IComparable_1$instance<DateTime>, ISpanParsable_1$instance<DateTime>, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1504
|
-
|
|
1505
1513
|
export type DateTime = DateTime$instance & __DateTime$views;
|
|
1506
1514
|
|
|
1507
1515
|
|
|
1508
1516
|
export interface DateTimeOffset$instance {
|
|
1517
|
+
readonly __tsonic_type_System_DateTimeOffset: never;
|
|
1518
|
+
|
|
1509
1519
|
readonly __tsonic_iface_System_IComparable: never;
|
|
1510
1520
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
1511
1521
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -1631,12 +1641,12 @@ export interface __DateTimeOffset$views {
|
|
|
1631
1641
|
TryFormat(utf8Destination: Span_1<Byte>, bytesWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
1632
1642
|
}
|
|
1633
1643
|
|
|
1634
|
-
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 {}
|
|
1635
|
-
|
|
1636
1644
|
export type DateTimeOffset = DateTimeOffset$instance & __DateTimeOffset$views;
|
|
1637
1645
|
|
|
1638
1646
|
|
|
1639
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
|
+
|
|
1640
1650
|
readonly __tsonic_iface_System_IComparable: never;
|
|
1641
1651
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
1642
1652
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
@@ -1802,12 +1812,12 @@ export interface __Decimal$views {
|
|
|
1802
1812
|
WriteExponentBigEndian(destination: Span_1<Byte>): int;
|
|
1803
1813
|
}
|
|
1804
1814
|
|
|
1805
|
-
export interface Decimal$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Decimal>, System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1806
|
-
|
|
1807
1815
|
export type Decimal = number & Decimal$instance & __Decimal$views;
|
|
1808
1816
|
|
|
1809
1817
|
|
|
1810
1818
|
export interface Delegate_InvocationListEnumerator_1$instance<TDelegate extends Function> {
|
|
1819
|
+
readonly __tsonic_type_System_Delegate_InvocationListEnumerator_1: never;
|
|
1820
|
+
|
|
1811
1821
|
readonly Current: TDelegate;
|
|
1812
1822
|
GetEnumerator(): Delegate_InvocationListEnumerator_1<TDelegate>;
|
|
1813
1823
|
MoveNext(): boolean;
|
|
@@ -1822,6 +1832,8 @@ export const Delegate_InvocationListEnumerator_1: {
|
|
|
1822
1832
|
export type Delegate_InvocationListEnumerator_1<TDelegate extends Function> = Delegate_InvocationListEnumerator_1$instance<TDelegate>;
|
|
1823
1833
|
|
|
1824
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
|
+
|
|
1825
1837
|
readonly __tsonic_iface_System_IComparable: never;
|
|
1826
1838
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
1827
1839
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
@@ -2035,12 +2047,12 @@ export interface __Double$views {
|
|
|
2035
2047
|
WriteExponentBigEndian(destination: Span_1<Byte>): int;
|
|
2036
2048
|
}
|
|
2037
2049
|
|
|
2038
|
-
export interface Double$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Double> {}
|
|
2039
|
-
|
|
2040
2050
|
export type Double = number & Double$instance & __Double$views;
|
|
2041
2051
|
|
|
2042
2052
|
|
|
2043
2053
|
export interface Environment_ProcessCpuUsage$instance {
|
|
2054
|
+
readonly __tsonic_type_System_Environment_ProcessCpuUsage: never;
|
|
2055
|
+
|
|
2044
2056
|
PrivilegedTime: TimeSpan;
|
|
2045
2057
|
readonly TotalTime: TimeSpan;
|
|
2046
2058
|
UserTime: TimeSpan;
|
|
@@ -2055,6 +2067,8 @@ export const Environment_ProcessCpuUsage: {
|
|
|
2055
2067
|
export type Environment_ProcessCpuUsage = Environment_ProcessCpuUsage$instance;
|
|
2056
2068
|
|
|
2057
2069
|
export interface GCGenerationInfo$instance {
|
|
2070
|
+
readonly __tsonic_type_System_GCGenerationInfo: never;
|
|
2071
|
+
|
|
2058
2072
|
readonly FragmentationAfterBytes: long;
|
|
2059
2073
|
readonly FragmentationBeforeBytes: long;
|
|
2060
2074
|
readonly SizeAfterBytes: long;
|
|
@@ -2070,6 +2084,8 @@ export const GCGenerationInfo: {
|
|
|
2070
2084
|
export type GCGenerationInfo = GCGenerationInfo$instance;
|
|
2071
2085
|
|
|
2072
2086
|
export interface GCMemoryInfo$instance {
|
|
2087
|
+
readonly __tsonic_type_System_GCMemoryInfo: never;
|
|
2088
|
+
|
|
2073
2089
|
readonly Compacted: boolean;
|
|
2074
2090
|
readonly Concurrent: boolean;
|
|
2075
2091
|
readonly FinalizationPendingCount: long;
|
|
@@ -2097,6 +2113,8 @@ export const GCMemoryInfo: {
|
|
|
2097
2113
|
export type GCMemoryInfo = GCMemoryInfo$instance;
|
|
2098
2114
|
|
|
2099
2115
|
export interface Guid$instance {
|
|
2116
|
+
readonly __tsonic_type_System_Guid: never;
|
|
2117
|
+
|
|
2100
2118
|
readonly __tsonic_iface_System_IComparable: never;
|
|
2101
2119
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
2102
2120
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -2175,12 +2193,12 @@ export interface __Guid$views {
|
|
|
2175
2193
|
TryFormat(utf8Destination: Span_1<Byte>, bytesWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
2176
2194
|
}
|
|
2177
2195
|
|
|
2178
|
-
export interface Guid$instance extends IComparable_1$instance<Guid>, ISpanParsable_1$instance<Guid> {}
|
|
2179
|
-
|
|
2180
2196
|
export type Guid = Guid$instance & __Guid$views;
|
|
2181
2197
|
|
|
2182
2198
|
|
|
2183
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
|
+
|
|
2184
2202
|
readonly __tsonic_iface_System_IComparable: never;
|
|
2185
2203
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
2186
2204
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -2395,12 +2413,12 @@ export interface __Half$views {
|
|
|
2395
2413
|
WriteExponentBigEndian(destination: Span_1<Byte>): int;
|
|
2396
2414
|
}
|
|
2397
2415
|
|
|
2398
|
-
export interface Half$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Half> {}
|
|
2399
|
-
|
|
2400
2416
|
export type Half = number & Half$instance & __Half$views;
|
|
2401
2417
|
|
|
2402
2418
|
|
|
2403
2419
|
export interface HashCode$instance {
|
|
2420
|
+
readonly __tsonic_type_System_HashCode: never;
|
|
2421
|
+
|
|
2404
2422
|
Add<T>(value: T): void;
|
|
2405
2423
|
Add<T>(value: T, comparer: IEqualityComparer_1<T>): void;
|
|
2406
2424
|
AddBytes(value: ReadOnlySpan_1<Byte>): void;
|
|
@@ -2426,6 +2444,8 @@ export const HashCode: {
|
|
|
2426
2444
|
export type HashCode = HashCode$instance;
|
|
2427
2445
|
|
|
2428
2446
|
export interface Index$instance {
|
|
2447
|
+
readonly __tsonic_type_System_Index: never;
|
|
2448
|
+
|
|
2429
2449
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2430
2450
|
|
|
2431
2451
|
readonly IsFromEnd: boolean;
|
|
@@ -2458,6 +2478,8 @@ export type Index = Index$instance & __Index$views;
|
|
|
2458
2478
|
|
|
2459
2479
|
|
|
2460
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
|
+
|
|
2461
2483
|
readonly __tsonic_iface_System_IComparable: never;
|
|
2462
2484
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
2463
2485
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -2582,12 +2604,12 @@ export interface __Int128$views {
|
|
|
2582
2604
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
2583
2605
|
}
|
|
2584
2606
|
|
|
2585
|
-
export interface Int128$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Int128> {}
|
|
2586
|
-
|
|
2587
2607
|
export type Int128 = number & Int128$instance & __Int128$views;
|
|
2588
2608
|
|
|
2589
2609
|
|
|
2590
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
|
+
|
|
2591
2613
|
readonly __tsonic_iface_System_IComparable: never;
|
|
2592
2614
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
2593
2615
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
@@ -2712,12 +2734,12 @@ export interface __Int16$views {
|
|
|
2712
2734
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
2713
2735
|
}
|
|
2714
2736
|
|
|
2715
|
-
export interface Int16$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Int16> {}
|
|
2716
|
-
|
|
2717
2737
|
export type Int16 = number & Int16$instance & __Int16$views;
|
|
2718
2738
|
|
|
2719
2739
|
|
|
2720
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
|
+
|
|
2721
2743
|
readonly __tsonic_iface_System_IComparable: never;
|
|
2722
2744
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
2723
2745
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
@@ -2843,12 +2865,12 @@ export interface __Int32$views {
|
|
|
2843
2865
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
2844
2866
|
}
|
|
2845
2867
|
|
|
2846
|
-
export interface Int32$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Int32> {}
|
|
2847
|
-
|
|
2848
2868
|
export type Int32 = number & Int32$instance & __Int32$views;
|
|
2849
2869
|
|
|
2850
2870
|
|
|
2851
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
|
+
|
|
2852
2874
|
readonly __tsonic_iface_System_IComparable: never;
|
|
2853
2875
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
2854
2876
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
@@ -2974,12 +2996,12 @@ export interface __Int64$views {
|
|
|
2974
2996
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
2975
2997
|
}
|
|
2976
2998
|
|
|
2977
|
-
export interface Int64$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Int64> {}
|
|
2978
|
-
|
|
2979
2999
|
export type Int64 = number & Int64$instance & __Int64$views;
|
|
2980
3000
|
|
|
2981
3001
|
|
|
2982
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
|
+
|
|
2983
3005
|
readonly __tsonic_iface_System_IComparable: never;
|
|
2984
3006
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
2985
3007
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -3113,12 +3135,12 @@ export interface __IntPtr$views {
|
|
|
3113
3135
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
3114
3136
|
}
|
|
3115
3137
|
|
|
3116
|
-
export interface IntPtr$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<IntPtr>, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
3117
|
-
|
|
3118
3138
|
export type IntPtr = number & IntPtr$instance & __IntPtr$views;
|
|
3119
3139
|
|
|
3120
3140
|
|
|
3121
3141
|
export interface Memory_1$instance<T> {
|
|
3142
|
+
readonly __tsonic_type_System_Memory_1: never;
|
|
3143
|
+
|
|
3122
3144
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3123
3145
|
|
|
3124
3146
|
readonly IsEmpty: boolean;
|
|
@@ -3155,6 +3177,8 @@ export type Memory_1<T> = Memory_1$instance<T> & __Memory_1$views<T>;
|
|
|
3155
3177
|
|
|
3156
3178
|
|
|
3157
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
|
+
|
|
3158
3182
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3159
3183
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3160
3184
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -3182,6 +3206,8 @@ export type MemoryExtensions_SpanSplitEnumerator_1<T extends (IEquatable_1<T> |
|
|
|
3182
3206
|
|
|
3183
3207
|
|
|
3184
3208
|
export interface MemoryExtensions_TryWriteInterpolatedStringHandler$instance {
|
|
3209
|
+
readonly __tsonic_type_System_MemoryExtensions_TryWriteInterpolatedStringHandler: never;
|
|
3210
|
+
|
|
3185
3211
|
AppendFormatted<T>(value: T): boolean;
|
|
3186
3212
|
AppendFormatted<T>(value: T, format: string): boolean;
|
|
3187
3213
|
AppendFormatted<T>(value: T, alignment: int): boolean;
|
|
@@ -3204,6 +3230,8 @@ export const MemoryExtensions_TryWriteInterpolatedStringHandler: {
|
|
|
3204
3230
|
export type MemoryExtensions_TryWriteInterpolatedStringHandler = MemoryExtensions_TryWriteInterpolatedStringHandler$instance;
|
|
3205
3231
|
|
|
3206
3232
|
export interface ModuleHandle$instance {
|
|
3233
|
+
readonly __tsonic_type_System_ModuleHandle: never;
|
|
3234
|
+
|
|
3207
3235
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3208
3236
|
|
|
3209
3237
|
readonly MDStreamVersion: int;
|
|
@@ -3239,6 +3267,8 @@ export type ModuleHandle = ModuleHandle$instance & __ModuleHandle$views;
|
|
|
3239
3267
|
|
|
3240
3268
|
|
|
3241
3269
|
export interface Nullable_1$instance<T extends unknown> {
|
|
3270
|
+
readonly __tsonic_type_System_Nullable_1: never;
|
|
3271
|
+
|
|
3242
3272
|
readonly HasValue: boolean;
|
|
3243
3273
|
readonly Value: T;
|
|
3244
3274
|
Equals(other: unknown): boolean;
|
|
@@ -3257,6 +3287,8 @@ export const Nullable_1: {
|
|
|
3257
3287
|
export type Nullable_1<T> = Nullable_1$instance<T>;
|
|
3258
3288
|
|
|
3259
3289
|
export interface Range$instance {
|
|
3290
|
+
readonly __tsonic_type_System_Range: never;
|
|
3291
|
+
|
|
3260
3292
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3261
3293
|
|
|
3262
3294
|
readonly End: Index;
|
|
@@ -3288,6 +3320,8 @@ export type Range = Range$instance & __Range$views;
|
|
|
3288
3320
|
|
|
3289
3321
|
|
|
3290
3322
|
export interface ReadOnlyMemory_1$instance<T> {
|
|
3323
|
+
readonly __tsonic_type_System_ReadOnlyMemory_1: never;
|
|
3324
|
+
|
|
3291
3325
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3292
3326
|
|
|
3293
3327
|
readonly IsEmpty: boolean;
|
|
@@ -3324,6 +3358,8 @@ export type ReadOnlyMemory_1<T> = ReadOnlyMemory_1$instance<T> & __ReadOnlyMemor
|
|
|
3324
3358
|
|
|
3325
3359
|
|
|
3326
3360
|
export interface ReadOnlySpan_1$instance<T> {
|
|
3361
|
+
readonly __tsonic_type_System_ReadOnlySpan_1: never;
|
|
3362
|
+
|
|
3327
3363
|
readonly IsEmpty: boolean;
|
|
3328
3364
|
readonly [index: number]: T;
|
|
3329
3365
|
readonly Length: int;
|
|
@@ -3353,6 +3389,8 @@ export const ReadOnlySpan_1: {
|
|
|
3353
3389
|
export type ReadOnlySpan_1<T> = ReadOnlySpan_1$instance<T>;
|
|
3354
3390
|
|
|
3355
3391
|
export interface ReadOnlySpan_1_Enumerator$instance<T> {
|
|
3392
|
+
readonly __tsonic_type_System_ReadOnlySpan_1_Enumerator: never;
|
|
3393
|
+
|
|
3356
3394
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3357
3395
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3358
3396
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -3378,6 +3416,8 @@ export type ReadOnlySpan_1_Enumerator<T> = ReadOnlySpan_1_Enumerator$instance<T>
|
|
|
3378
3416
|
|
|
3379
3417
|
|
|
3380
3418
|
export interface RuntimeArgumentHandle$instance {
|
|
3419
|
+
readonly __tsonic_type_System_RuntimeArgumentHandle: never;
|
|
3420
|
+
|
|
3381
3421
|
}
|
|
3382
3422
|
|
|
3383
3423
|
|
|
@@ -3388,7 +3428,9 @@ export const RuntimeArgumentHandle: {
|
|
|
3388
3428
|
|
|
3389
3429
|
export type RuntimeArgumentHandle = RuntimeArgumentHandle$instance;
|
|
3390
3430
|
|
|
3391
|
-
export interface RuntimeFieldHandle$instance {
|
|
3431
|
+
export interface RuntimeFieldHandle$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
3432
|
+
readonly __tsonic_type_System_RuntimeFieldHandle: never;
|
|
3433
|
+
|
|
3392
3434
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3393
3435
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
3394
3436
|
|
|
@@ -3415,12 +3457,12 @@ export interface __RuntimeFieldHandle$views {
|
|
|
3415
3457
|
Equals(other: RuntimeFieldHandle): boolean;
|
|
3416
3458
|
}
|
|
3417
3459
|
|
|
3418
|
-
export interface RuntimeFieldHandle$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
3419
|
-
|
|
3420
3460
|
export type RuntimeFieldHandle = RuntimeFieldHandle$instance & __RuntimeFieldHandle$views;
|
|
3421
3461
|
|
|
3422
3462
|
|
|
3423
|
-
export interface RuntimeMethodHandle$instance {
|
|
3463
|
+
export interface RuntimeMethodHandle$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
3464
|
+
readonly __tsonic_type_System_RuntimeMethodHandle: never;
|
|
3465
|
+
|
|
3424
3466
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3425
3467
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
3426
3468
|
|
|
@@ -3448,12 +3490,12 @@ export interface __RuntimeMethodHandle$views {
|
|
|
3448
3490
|
Equals(other: RuntimeMethodHandle): boolean;
|
|
3449
3491
|
}
|
|
3450
3492
|
|
|
3451
|
-
export interface RuntimeMethodHandle$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
3452
|
-
|
|
3453
3493
|
export type RuntimeMethodHandle = RuntimeMethodHandle$instance & __RuntimeMethodHandle$views;
|
|
3454
3494
|
|
|
3455
3495
|
|
|
3456
|
-
export interface RuntimeTypeHandle$instance {
|
|
3496
|
+
export interface RuntimeTypeHandle$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
3497
|
+
readonly __tsonic_type_System_RuntimeTypeHandle: never;
|
|
3498
|
+
|
|
3457
3499
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3458
3500
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
3459
3501
|
|
|
@@ -3481,12 +3523,12 @@ export interface __RuntimeTypeHandle$views {
|
|
|
3481
3523
|
Equals(other: RuntimeTypeHandle): boolean;
|
|
3482
3524
|
}
|
|
3483
3525
|
|
|
3484
|
-
export interface RuntimeTypeHandle$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
3485
|
-
|
|
3486
3526
|
export type RuntimeTypeHandle = RuntimeTypeHandle$instance & __RuntimeTypeHandle$views;
|
|
3487
3527
|
|
|
3488
3528
|
|
|
3489
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
|
+
|
|
3490
3532
|
readonly __tsonic_iface_System_IComparable: never;
|
|
3491
3533
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
3492
3534
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
@@ -3611,12 +3653,12 @@ export interface __SByte$views {
|
|
|
3611
3653
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
3612
3654
|
}
|
|
3613
3655
|
|
|
3614
|
-
export interface SByte$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<SByte> {}
|
|
3615
|
-
|
|
3616
3656
|
export type SByte = number & SByte$instance & __SByte$views;
|
|
3617
3657
|
|
|
3618
3658
|
|
|
3619
3659
|
export interface SequencePosition$instance {
|
|
3660
|
+
readonly __tsonic_type_System_SequencePosition: never;
|
|
3661
|
+
|
|
3620
3662
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3621
3663
|
|
|
3622
3664
|
Equals(other: SequencePosition): boolean;
|
|
@@ -3643,6 +3685,8 @@ export type SequencePosition = SequencePosition$instance & __SequencePosition$vi
|
|
|
3643
3685
|
|
|
3644
3686
|
|
|
3645
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
|
+
|
|
3646
3690
|
readonly __tsonic_iface_System_IComparable: never;
|
|
3647
3691
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
3648
3692
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
@@ -3856,12 +3900,12 @@ export interface __Single$views {
|
|
|
3856
3900
|
WriteExponentBigEndian(destination: Span_1<Byte>): int;
|
|
3857
3901
|
}
|
|
3858
3902
|
|
|
3859
|
-
export interface Single$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<Single> {}
|
|
3860
|
-
|
|
3861
3903
|
export type Single = number & Single$instance & __Single$views;
|
|
3862
3904
|
|
|
3863
3905
|
|
|
3864
3906
|
export interface Span_1$instance<T> {
|
|
3907
|
+
readonly __tsonic_type_System_Span_1: never;
|
|
3908
|
+
|
|
3865
3909
|
readonly IsEmpty: boolean;
|
|
3866
3910
|
readonly [index: number]: T;
|
|
3867
3911
|
readonly Length: int;
|
|
@@ -3892,6 +3936,8 @@ export const Span_1: {
|
|
|
3892
3936
|
export type Span_1<T> = Span_1$instance<T>;
|
|
3893
3937
|
|
|
3894
3938
|
export interface Span_1_Enumerator$instance<T> {
|
|
3939
|
+
readonly __tsonic_type_System_Span_1_Enumerator: never;
|
|
3940
|
+
|
|
3895
3941
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
3896
3942
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3897
3943
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -3917,6 +3963,8 @@ export type Span_1_Enumerator<T> = Span_1_Enumerator$instance<T> & __Span_1_Enum
|
|
|
3917
3963
|
|
|
3918
3964
|
|
|
3919
3965
|
export interface TimeOnly$instance {
|
|
3966
|
+
readonly __tsonic_type_System_TimeOnly: never;
|
|
3967
|
+
|
|
3920
3968
|
readonly __tsonic_iface_System_IComparable: never;
|
|
3921
3969
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
3922
3970
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -4016,12 +4064,12 @@ export interface __TimeOnly$views {
|
|
|
4016
4064
|
TryFormat(utf8Destination: Span_1<Byte>, bytesWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
4017
4065
|
}
|
|
4018
4066
|
|
|
4019
|
-
export interface TimeOnly$instance extends ISpanParsable_1$instance<TimeOnly> {}
|
|
4020
|
-
|
|
4021
4067
|
export type TimeOnly = TimeOnly$instance & __TimeOnly$views;
|
|
4022
4068
|
|
|
4023
4069
|
|
|
4024
4070
|
export interface TimeSpan$instance {
|
|
4071
|
+
readonly __tsonic_type_System_TimeSpan: never;
|
|
4072
|
+
|
|
4025
4073
|
readonly __tsonic_iface_System_IComparable: never;
|
|
4026
4074
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4027
4075
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -4157,12 +4205,12 @@ export interface __TimeSpan$views {
|
|
|
4157
4205
|
TryFormat(utf8Destination: Span_1<Byte>, bytesWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
4158
4206
|
}
|
|
4159
4207
|
|
|
4160
|
-
export interface TimeSpan$instance extends ISpanParsable_1$instance<TimeSpan> {}
|
|
4161
|
-
|
|
4162
4208
|
export type TimeSpan = TimeSpan$instance & __TimeSpan$views;
|
|
4163
4209
|
|
|
4164
4210
|
|
|
4165
|
-
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
|
+
|
|
4166
4214
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4167
4215
|
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
4168
4216
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
@@ -4195,12 +4243,12 @@ export interface __TimeZoneInfo_TransitionTime$views {
|
|
|
4195
4243
|
Equals(other: TimeZoneInfo_TransitionTime): boolean;
|
|
4196
4244
|
}
|
|
4197
4245
|
|
|
4198
|
-
export interface TimeZoneInfo_TransitionTime$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
4199
|
-
|
|
4200
4246
|
export type TimeZoneInfo_TransitionTime = TimeZoneInfo_TransitionTime$instance & __TimeZoneInfo_TransitionTime$views;
|
|
4201
4247
|
|
|
4202
4248
|
|
|
4203
4249
|
export interface TypedReference$instance {
|
|
4250
|
+
readonly __tsonic_type_System_TypedReference: never;
|
|
4251
|
+
|
|
4204
4252
|
Equals(o: unknown): boolean;
|
|
4205
4253
|
GetHashCode(): int;
|
|
4206
4254
|
}
|
|
@@ -4219,6 +4267,8 @@ export const TypedReference: {
|
|
|
4219
4267
|
export type TypedReference = TypedReference$instance;
|
|
4220
4268
|
|
|
4221
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
|
+
|
|
4222
4272
|
readonly __tsonic_iface_System_IComparable: never;
|
|
4223
4273
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4224
4274
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -4336,12 +4386,12 @@ export interface __UInt128$views {
|
|
|
4336
4386
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
4337
4387
|
}
|
|
4338
4388
|
|
|
4339
|
-
export interface UInt128$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<UInt128> {}
|
|
4340
|
-
|
|
4341
4389
|
export type UInt128 = number & UInt128$instance & __UInt128$views;
|
|
4342
4390
|
|
|
4343
4391
|
|
|
4344
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
|
+
|
|
4345
4395
|
readonly __tsonic_iface_System_IComparable: never;
|
|
4346
4396
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4347
4397
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
@@ -4460,12 +4510,12 @@ export interface __UInt16$views {
|
|
|
4460
4510
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
4461
4511
|
}
|
|
4462
4512
|
|
|
4463
|
-
export interface UInt16$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<UInt16> {}
|
|
4464
|
-
|
|
4465
4513
|
export type UInt16 = number & UInt16$instance & __UInt16$views;
|
|
4466
4514
|
|
|
4467
4515
|
|
|
4468
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
|
+
|
|
4469
4519
|
readonly __tsonic_iface_System_IComparable: never;
|
|
4470
4520
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4471
4521
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
@@ -4585,12 +4635,12 @@ export interface __UInt32$views {
|
|
|
4585
4635
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
4586
4636
|
}
|
|
4587
4637
|
|
|
4588
|
-
export interface UInt32$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<UInt32> {}
|
|
4589
|
-
|
|
4590
4638
|
export type UInt32 = number & UInt32$instance & __UInt32$views;
|
|
4591
4639
|
|
|
4592
4640
|
|
|
4593
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
|
+
|
|
4594
4644
|
readonly __tsonic_iface_System_IComparable: never;
|
|
4595
4645
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4596
4646
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
@@ -4710,12 +4760,12 @@ export interface __UInt64$views {
|
|
|
4710
4760
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
4711
4761
|
}
|
|
4712
4762
|
|
|
4713
|
-
export interface UInt64$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<UInt64> {}
|
|
4714
|
-
|
|
4715
4763
|
export type UInt64 = number & UInt64$instance & __UInt64$views;
|
|
4716
4764
|
|
|
4717
4765
|
|
|
4718
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
|
+
|
|
4719
4769
|
readonly __tsonic_iface_System_IComparable: never;
|
|
4720
4770
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4721
4771
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -4843,12 +4893,12 @@ export interface __UIntPtr$views {
|
|
|
4843
4893
|
WriteBigEndian(destination: Span_1<Byte>): int;
|
|
4844
4894
|
}
|
|
4845
4895
|
|
|
4846
|
-
export interface UIntPtr$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<UIntPtr>, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
4847
|
-
|
|
4848
4896
|
export type UIntPtr = number & UIntPtr$instance & __UIntPtr$views;
|
|
4849
4897
|
|
|
4850
4898
|
|
|
4851
4899
|
export interface UriCreationOptions$instance {
|
|
4900
|
+
readonly __tsonic_type_System_UriCreationOptions: never;
|
|
4901
|
+
|
|
4852
4902
|
DangerousDisablePathAndQueryCanonicalization: boolean;
|
|
4853
4903
|
}
|
|
4854
4904
|
|
|
@@ -4861,6 +4911,8 @@ export const UriCreationOptions: {
|
|
|
4861
4911
|
export type UriCreationOptions = UriCreationOptions$instance;
|
|
4862
4912
|
|
|
4863
4913
|
export interface ValueTuple$instance {
|
|
4914
|
+
readonly __tsonic_type_System_ValueTuple: never;
|
|
4915
|
+
|
|
4864
4916
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
4865
4917
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
4866
4918
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -4903,12 +4955,12 @@ export interface __ValueTuple$views {
|
|
|
4903
4955
|
CompareTo(obj: unknown): int;
|
|
4904
4956
|
}
|
|
4905
4957
|
|
|
4906
|
-
export interface ValueTuple$instance extends IComparable_1$instance<ValueTuple>, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
4907
|
-
|
|
4908
4958
|
export type ValueTuple = ValueTuple$instance & __ValueTuple$views;
|
|
4909
4959
|
|
|
4910
4960
|
|
|
4911
|
-
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
|
+
|
|
4912
4964
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
4913
4965
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
4914
4966
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -4943,12 +4995,12 @@ export interface __ValueTuple_1$views<T1> {
|
|
|
4943
4995
|
CompareTo(obj: unknown): int;
|
|
4944
4996
|
}
|
|
4945
4997
|
|
|
4946
|
-
export interface ValueTuple_1$instance<T1> extends IComparable_1$instance<ValueTuple_1<T1>>, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
4947
|
-
|
|
4948
4998
|
export type ValueTuple_1<T1> = ValueTuple_1$instance<T1> & __ValueTuple_1$views<T1>;
|
|
4949
4999
|
|
|
4950
5000
|
|
|
4951
|
-
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
|
+
|
|
4952
5004
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
4953
5005
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
4954
5006
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -4984,12 +5036,12 @@ export interface __ValueTuple_2$views<T1, T2> {
|
|
|
4984
5036
|
CompareTo(obj: unknown): int;
|
|
4985
5037
|
}
|
|
4986
5038
|
|
|
4987
|
-
export interface ValueTuple_2$instance<T1, T2> extends IComparable_1$instance<ValueTuple_2<T1, T2>>, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
4988
|
-
|
|
4989
5039
|
export type ValueTuple_2<T1, T2> = ValueTuple_2$instance<T1, T2> & __ValueTuple_2$views<T1, T2>;
|
|
4990
5040
|
|
|
4991
5041
|
|
|
4992
|
-
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
|
+
|
|
4993
5045
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
4994
5046
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
4995
5047
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -5026,12 +5078,12 @@ export interface __ValueTuple_3$views<T1, T2, T3> {
|
|
|
5026
5078
|
CompareTo(obj: unknown): int;
|
|
5027
5079
|
}
|
|
5028
5080
|
|
|
5029
|
-
export interface ValueTuple_3$instance<T1, T2, T3> extends IComparable_1$instance<ValueTuple_3<T1, T2, T3>>, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
5030
|
-
|
|
5031
5081
|
export type ValueTuple_3<T1, T2, T3> = ValueTuple_3$instance<T1, T2, T3> & __ValueTuple_3$views<T1, T2, T3>;
|
|
5032
5082
|
|
|
5033
5083
|
|
|
5034
|
-
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
|
+
|
|
5035
5087
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
5036
5088
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
5037
5089
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -5069,12 +5121,12 @@ export interface __ValueTuple_4$views<T1, T2, T3, T4> {
|
|
|
5069
5121
|
CompareTo(obj: unknown): int;
|
|
5070
5122
|
}
|
|
5071
5123
|
|
|
5072
|
-
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 {}
|
|
5073
|
-
|
|
5074
5124
|
export type ValueTuple_4<T1, T2, T3, T4> = ValueTuple_4$instance<T1, T2, T3, T4> & __ValueTuple_4$views<T1, T2, T3, T4>;
|
|
5075
5125
|
|
|
5076
5126
|
|
|
5077
|
-
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
|
+
|
|
5078
5130
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
5079
5131
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
5080
5132
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -5113,12 +5165,12 @@ export interface __ValueTuple_5$views<T1, T2, T3, T4, T5> {
|
|
|
5113
5165
|
CompareTo(obj: unknown): int;
|
|
5114
5166
|
}
|
|
5115
5167
|
|
|
5116
|
-
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 {}
|
|
5117
|
-
|
|
5118
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>;
|
|
5119
5169
|
|
|
5120
5170
|
|
|
5121
|
-
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
|
+
|
|
5122
5174
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
5123
5175
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
5124
5176
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -5158,12 +5210,12 @@ export interface __ValueTuple_6$views<T1, T2, T3, T4, T5, T6> {
|
|
|
5158
5210
|
CompareTo(obj: unknown): int;
|
|
5159
5211
|
}
|
|
5160
5212
|
|
|
5161
|
-
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 {}
|
|
5162
|
-
|
|
5163
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>;
|
|
5164
5214
|
|
|
5165
5215
|
|
|
5166
|
-
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
|
+
|
|
5167
5219
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
5168
5220
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
5169
5221
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -5204,12 +5256,12 @@ export interface __ValueTuple_7$views<T1, T2, T3, T4, T5, T6, T7> {
|
|
|
5204
5256
|
CompareTo(obj: unknown): int;
|
|
5205
5257
|
}
|
|
5206
5258
|
|
|
5207
|
-
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 {}
|
|
5208
|
-
|
|
5209
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>;
|
|
5210
5260
|
|
|
5211
5261
|
|
|
5212
|
-
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
|
+
|
|
5213
5265
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
5214
5266
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
5215
5267
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -5251,12 +5303,12 @@ export interface __ValueTuple_8$views<T1, T2, T3, T4, T5, T6, T7, TRest extends
|
|
|
5251
5303
|
CompareTo(obj: unknown): int;
|
|
5252
5304
|
}
|
|
5253
5305
|
|
|
5254
|
-
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 {}
|
|
5255
|
-
|
|
5256
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>;
|
|
5257
5307
|
|
|
5258
5308
|
|
|
5259
5309
|
export interface Void$instance {
|
|
5310
|
+
readonly __tsonic_type_System_Void: never;
|
|
5311
|
+
|
|
5260
5312
|
}
|
|
5261
5313
|
|
|
5262
5314
|
|
|
@@ -5268,6 +5320,8 @@ export const Void: {
|
|
|
5268
5320
|
export type Void = Void$instance;
|
|
5269
5321
|
|
|
5270
5322
|
export interface AccessViolationException$instance extends SystemException$instance {
|
|
5323
|
+
readonly __tsonic_type_System_AccessViolationException: never;
|
|
5324
|
+
|
|
5271
5325
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5272
5326
|
|
|
5273
5327
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -5289,6 +5343,8 @@ export type AccessViolationException = AccessViolationException$instance & __Acc
|
|
|
5289
5343
|
|
|
5290
5344
|
|
|
5291
5345
|
export interface AggregateException$instance extends Exception$instance {
|
|
5346
|
+
readonly __tsonic_type_System_AggregateException: never;
|
|
5347
|
+
|
|
5292
5348
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5293
5349
|
|
|
5294
5350
|
readonly InnerExceptions: ReadOnlyCollection_1<Exception>;
|
|
@@ -5320,6 +5376,8 @@ export type AggregateException = AggregateException$instance & __AggregateExcept
|
|
|
5320
5376
|
|
|
5321
5377
|
|
|
5322
5378
|
export interface AppDomain$instance extends MarshalByRefObject {
|
|
5379
|
+
readonly __tsonic_type_System_AppDomain: never;
|
|
5380
|
+
|
|
5323
5381
|
readonly BaseDirectory: string;
|
|
5324
5382
|
readonly DynamicDirectory: string | undefined;
|
|
5325
5383
|
readonly FriendlyName: string;
|
|
@@ -5389,6 +5447,8 @@ export const AppDomain: {
|
|
|
5389
5447
|
export type AppDomain = AppDomain$instance;
|
|
5390
5448
|
|
|
5391
5449
|
export interface AppDomainSetup$instance {
|
|
5450
|
+
readonly __tsonic_type_System_AppDomainSetup: never;
|
|
5451
|
+
|
|
5392
5452
|
readonly ApplicationBase: string | undefined;
|
|
5393
5453
|
readonly TargetFrameworkName: string | undefined;
|
|
5394
5454
|
}
|
|
@@ -5401,6 +5461,8 @@ export const AppDomainSetup: {
|
|
|
5401
5461
|
export type AppDomainSetup = AppDomainSetup$instance;
|
|
5402
5462
|
|
|
5403
5463
|
export interface AppDomainUnloadedException$instance extends SystemException$instance {
|
|
5464
|
+
readonly __tsonic_type_System_AppDomainUnloadedException: never;
|
|
5465
|
+
|
|
5404
5466
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5405
5467
|
|
|
5406
5468
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -5422,6 +5484,8 @@ export type AppDomainUnloadedException = AppDomainUnloadedException$instance & _
|
|
|
5422
5484
|
|
|
5423
5485
|
|
|
5424
5486
|
export interface ApplicationException$instance extends Exception$instance {
|
|
5487
|
+
readonly __tsonic_type_System_ApplicationException: never;
|
|
5488
|
+
|
|
5425
5489
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5426
5490
|
|
|
5427
5491
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -5443,6 +5507,8 @@ export type ApplicationException = ApplicationException$instance & __Application
|
|
|
5443
5507
|
|
|
5444
5508
|
|
|
5445
5509
|
export interface ApplicationId$instance {
|
|
5510
|
+
readonly __tsonic_type_System_ApplicationId: never;
|
|
5511
|
+
|
|
5446
5512
|
readonly Culture: string | undefined;
|
|
5447
5513
|
readonly Name: string;
|
|
5448
5514
|
readonly ProcessorArchitecture: string | undefined;
|
|
@@ -5463,6 +5529,8 @@ export const ApplicationId: {
|
|
|
5463
5529
|
export type ApplicationId = ApplicationId$instance;
|
|
5464
5530
|
|
|
5465
5531
|
export interface ArgumentException$instance extends SystemException$instance {
|
|
5532
|
+
readonly __tsonic_type_System_ArgumentException: never;
|
|
5533
|
+
|
|
5466
5534
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5467
5535
|
|
|
5468
5536
|
readonly Message: string;
|
|
@@ -5490,6 +5558,8 @@ export type ArgumentException = ArgumentException$instance & __ArgumentException
|
|
|
5490
5558
|
|
|
5491
5559
|
|
|
5492
5560
|
export interface ArgumentNullException$instance extends ArgumentException$instance {
|
|
5561
|
+
readonly __tsonic_type_System_ArgumentNullException: never;
|
|
5562
|
+
|
|
5493
5563
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5494
5564
|
|
|
5495
5565
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -5514,6 +5584,8 @@ export type ArgumentNullException = ArgumentNullException$instance & __ArgumentN
|
|
|
5514
5584
|
|
|
5515
5585
|
|
|
5516
5586
|
export interface ArgumentOutOfRangeException$instance extends ArgumentException$instance {
|
|
5587
|
+
readonly __tsonic_type_System_ArgumentOutOfRangeException: never;
|
|
5588
|
+
|
|
5517
5589
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5518
5590
|
|
|
5519
5591
|
readonly ActualValue: unknown | undefined;
|
|
@@ -5548,6 +5620,8 @@ export type ArgumentOutOfRangeException = ArgumentOutOfRangeException$instance &
|
|
|
5548
5620
|
|
|
5549
5621
|
|
|
5550
5622
|
export interface ArithmeticException$instance extends SystemException$instance {
|
|
5623
|
+
readonly __tsonic_type_System_ArithmeticException: never;
|
|
5624
|
+
|
|
5551
5625
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5552
5626
|
|
|
5553
5627
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -5568,7 +5642,9 @@ export interface __ArithmeticException$views {
|
|
|
5568
5642
|
export type ArithmeticException = ArithmeticException$instance & __ArithmeticException$views;
|
|
5569
5643
|
|
|
5570
5644
|
|
|
5571
|
-
export interface Array$instance {
|
|
5645
|
+
export interface Array$instance extends ICloneable$instance {
|
|
5646
|
+
readonly __tsonic_type_System_Array: never;
|
|
5647
|
+
|
|
5572
5648
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
5573
5649
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
5574
5650
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
@@ -5700,12 +5776,12 @@ export interface __Array$views {
|
|
|
5700
5776
|
As_ICloneable(): ICloneable$instance;
|
|
5701
5777
|
}
|
|
5702
5778
|
|
|
5703
|
-
export interface Array$instance extends ICloneable$instance {}
|
|
5704
|
-
|
|
5705
5779
|
export type Array = Array$instance & __Array$views;
|
|
5706
5780
|
|
|
5707
5781
|
|
|
5708
5782
|
export interface ArrayTypeMismatchException$instance extends SystemException$instance {
|
|
5783
|
+
readonly __tsonic_type_System_ArrayTypeMismatchException: never;
|
|
5784
|
+
|
|
5709
5785
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5710
5786
|
|
|
5711
5787
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -5727,6 +5803,8 @@ export type ArrayTypeMismatchException = ArrayTypeMismatchException$instance & _
|
|
|
5727
5803
|
|
|
5728
5804
|
|
|
5729
5805
|
export interface AssemblyLoadEventArgs$instance extends EventArgs {
|
|
5806
|
+
readonly __tsonic_type_System_AssemblyLoadEventArgs: never;
|
|
5807
|
+
|
|
5730
5808
|
readonly LoadedAssembly: Assembly;
|
|
5731
5809
|
}
|
|
5732
5810
|
|
|
@@ -5739,6 +5817,8 @@ export const AssemblyLoadEventArgs: {
|
|
|
5739
5817
|
export type AssemblyLoadEventArgs = AssemblyLoadEventArgs$instance;
|
|
5740
5818
|
|
|
5741
5819
|
export interface Attribute$instance {
|
|
5820
|
+
readonly __tsonic_type_System_Attribute: never;
|
|
5821
|
+
|
|
5742
5822
|
readonly TypeId: unknown;
|
|
5743
5823
|
Equals(obj: unknown): boolean;
|
|
5744
5824
|
GetHashCode(): int;
|
|
@@ -5786,6 +5866,8 @@ export const Attribute: (abstract new() => Attribute) & {
|
|
|
5786
5866
|
export type Attribute = Attribute$instance;
|
|
5787
5867
|
|
|
5788
5868
|
export interface AttributeUsageAttribute$instance extends Attribute {
|
|
5869
|
+
readonly __tsonic_type_System_AttributeUsageAttribute: never;
|
|
5870
|
+
|
|
5789
5871
|
AllowMultiple: boolean;
|
|
5790
5872
|
Inherited: boolean;
|
|
5791
5873
|
readonly ValidOn: AttributeTargets;
|
|
@@ -5800,6 +5882,8 @@ export const AttributeUsageAttribute: {
|
|
|
5800
5882
|
export type AttributeUsageAttribute = AttributeUsageAttribute$instance;
|
|
5801
5883
|
|
|
5802
5884
|
export interface BadImageFormatException$instance extends SystemException$instance {
|
|
5885
|
+
readonly __tsonic_type_System_BadImageFormatException: never;
|
|
5886
|
+
|
|
5803
5887
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5804
5888
|
|
|
5805
5889
|
readonly FileName: string | undefined;
|
|
@@ -5827,6 +5911,8 @@ export type BadImageFormatException = BadImageFormatException$instance & __BadIm
|
|
|
5827
5911
|
|
|
5828
5912
|
|
|
5829
5913
|
export interface CannotUnloadAppDomainException$instance extends SystemException$instance {
|
|
5914
|
+
readonly __tsonic_type_System_CannotUnloadAppDomainException: never;
|
|
5915
|
+
|
|
5830
5916
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5831
5917
|
|
|
5832
5918
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -5847,7 +5933,9 @@ export interface __CannotUnloadAppDomainException$views {
|
|
|
5847
5933
|
export type CannotUnloadAppDomainException = CannotUnloadAppDomainException$instance & __CannotUnloadAppDomainException$views;
|
|
5848
5934
|
|
|
5849
5935
|
|
|
5850
|
-
export interface CharEnumerator$instance extends IDisposable {
|
|
5936
|
+
export interface CharEnumerator$instance extends IDisposable, ICloneable$instance {
|
|
5937
|
+
readonly __tsonic_type_System_CharEnumerator: never;
|
|
5938
|
+
|
|
5851
5939
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
5852
5940
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
5853
5941
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
@@ -5871,12 +5959,12 @@ export interface __CharEnumerator$views {
|
|
|
5871
5959
|
As_ICloneable(): ICloneable$instance;
|
|
5872
5960
|
}
|
|
5873
5961
|
|
|
5874
|
-
export interface CharEnumerator$instance extends ICloneable$instance {}
|
|
5875
|
-
|
|
5876
5962
|
export type CharEnumerator = CharEnumerator$instance & __CharEnumerator$views;
|
|
5877
5963
|
|
|
5878
5964
|
|
|
5879
5965
|
export interface CLSCompliantAttribute$instance extends Attribute {
|
|
5966
|
+
readonly __tsonic_type_System_CLSCompliantAttribute: never;
|
|
5967
|
+
|
|
5880
5968
|
readonly IsCompliant: boolean;
|
|
5881
5969
|
}
|
|
5882
5970
|
|
|
@@ -5889,6 +5977,8 @@ export const CLSCompliantAttribute: {
|
|
|
5889
5977
|
export type CLSCompliantAttribute = CLSCompliantAttribute$instance;
|
|
5890
5978
|
|
|
5891
5979
|
export interface ConsoleCancelEventArgs$instance extends EventArgs {
|
|
5980
|
+
readonly __tsonic_type_System_ConsoleCancelEventArgs: never;
|
|
5981
|
+
|
|
5892
5982
|
Cancel: boolean;
|
|
5893
5983
|
readonly SpecialKey: ConsoleSpecialKey;
|
|
5894
5984
|
}
|
|
@@ -5901,6 +5991,8 @@ export const ConsoleCancelEventArgs: {
|
|
|
5901
5991
|
export type ConsoleCancelEventArgs = ConsoleCancelEventArgs$instance;
|
|
5902
5992
|
|
|
5903
5993
|
export interface ContextBoundObject$instance extends MarshalByRefObject {
|
|
5994
|
+
readonly __tsonic_type_System_ContextBoundObject: never;
|
|
5995
|
+
|
|
5904
5996
|
}
|
|
5905
5997
|
|
|
5906
5998
|
|
|
@@ -5911,6 +6003,8 @@ export const ContextBoundObject: (abstract new() => ContextBoundObject) & {
|
|
|
5911
6003
|
export type ContextBoundObject = ContextBoundObject$instance;
|
|
5912
6004
|
|
|
5913
6005
|
export interface ContextMarshalException$instance extends SystemException$instance {
|
|
6006
|
+
readonly __tsonic_type_System_ContextMarshalException: never;
|
|
6007
|
+
|
|
5914
6008
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5915
6009
|
|
|
5916
6010
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -5932,6 +6026,8 @@ export type ContextMarshalException = ContextMarshalException$instance & __Conte
|
|
|
5932
6026
|
|
|
5933
6027
|
|
|
5934
6028
|
export interface ContextStaticAttribute$instance extends Attribute {
|
|
6029
|
+
readonly __tsonic_type_System_ContextStaticAttribute: never;
|
|
6030
|
+
|
|
5935
6031
|
}
|
|
5936
6032
|
|
|
5937
6033
|
|
|
@@ -5942,7 +6038,9 @@ export const ContextStaticAttribute: {
|
|
|
5942
6038
|
|
|
5943
6039
|
export type ContextStaticAttribute = ContextStaticAttribute$instance;
|
|
5944
6040
|
|
|
5945
|
-
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
|
+
|
|
5946
6044
|
readonly __tsonic_iface_System_Collections_Generic_IAlternateEqualityComparer_2: never;
|
|
5947
6045
|
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
5948
6046
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
@@ -5976,12 +6074,12 @@ export interface __CultureAwareComparer$views {
|
|
|
5976
6074
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
5977
6075
|
}
|
|
5978
6076
|
|
|
5979
|
-
export interface CultureAwareComparer$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
5980
|
-
|
|
5981
6077
|
export type CultureAwareComparer = CultureAwareComparer$instance & __CultureAwareComparer$views;
|
|
5982
6078
|
|
|
5983
6079
|
|
|
5984
6080
|
export interface DataMisalignedException$instance extends SystemException$instance {
|
|
6081
|
+
readonly __tsonic_type_System_DataMisalignedException: never;
|
|
6082
|
+
|
|
5985
6083
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
5986
6084
|
|
|
5987
6085
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6002,7 +6100,9 @@ export interface __DataMisalignedException$views {
|
|
|
6002
6100
|
export type DataMisalignedException = DataMisalignedException$instance & __DataMisalignedException$views;
|
|
6003
6101
|
|
|
6004
6102
|
|
|
6005
|
-
export interface DBNull$instance {
|
|
6103
|
+
export interface DBNull$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
6104
|
+
readonly __tsonic_type_System_DBNull: never;
|
|
6105
|
+
|
|
6006
6106
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
6007
6107
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6008
6108
|
|
|
@@ -6023,12 +6123,12 @@ export interface __DBNull$views {
|
|
|
6023
6123
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
6024
6124
|
}
|
|
6025
6125
|
|
|
6026
|
-
export interface DBNull$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
6027
|
-
|
|
6028
6126
|
export type DBNull = DBNull$instance & __DBNull$views;
|
|
6029
6127
|
|
|
6030
6128
|
|
|
6031
|
-
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
|
+
|
|
6032
6132
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
6033
6133
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6034
6134
|
|
|
@@ -6073,12 +6173,12 @@ export interface __Delegate$views {
|
|
|
6073
6173
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
6074
6174
|
}
|
|
6075
6175
|
|
|
6076
|
-
export interface Delegate$instance extends ICloneable$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
6077
|
-
|
|
6078
6176
|
export type Delegate = Delegate$instance & __Delegate$views;
|
|
6079
6177
|
|
|
6080
6178
|
|
|
6081
6179
|
export interface DivideByZeroException$instance extends ArithmeticException$instance {
|
|
6180
|
+
readonly __tsonic_type_System_DivideByZeroException: never;
|
|
6181
|
+
|
|
6082
6182
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6083
6183
|
|
|
6084
6184
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6100,6 +6200,8 @@ export type DivideByZeroException = DivideByZeroException$instance & __DivideByZ
|
|
|
6100
6200
|
|
|
6101
6201
|
|
|
6102
6202
|
export interface DllNotFoundException$instance extends TypeLoadException$instance {
|
|
6203
|
+
readonly __tsonic_type_System_DllNotFoundException: never;
|
|
6204
|
+
|
|
6103
6205
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6104
6206
|
|
|
6105
6207
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6121,6 +6223,8 @@ export type DllNotFoundException = DllNotFoundException$instance & __DllNotFound
|
|
|
6121
6223
|
|
|
6122
6224
|
|
|
6123
6225
|
export interface DuplicateWaitObjectException$instance extends ArgumentException$instance {
|
|
6226
|
+
readonly __tsonic_type_System_DuplicateWaitObjectException: never;
|
|
6227
|
+
|
|
6124
6228
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6125
6229
|
|
|
6126
6230
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6143,6 +6247,8 @@ export type DuplicateWaitObjectException = DuplicateWaitObjectException$instance
|
|
|
6143
6247
|
|
|
6144
6248
|
|
|
6145
6249
|
export interface EntryPointNotFoundException$instance extends TypeLoadException$instance {
|
|
6250
|
+
readonly __tsonic_type_System_EntryPointNotFoundException: never;
|
|
6251
|
+
|
|
6146
6252
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6147
6253
|
|
|
6148
6254
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6163,7 +6269,9 @@ export interface __EntryPointNotFoundException$views {
|
|
|
6163
6269
|
export type EntryPointNotFoundException = EntryPointNotFoundException$instance & __EntryPointNotFoundException$views;
|
|
6164
6270
|
|
|
6165
6271
|
|
|
6166
|
-
export interface Enum$instance {
|
|
6272
|
+
export interface Enum$instance extends IComparable$instance {
|
|
6273
|
+
readonly __tsonic_type_System_Enum: never;
|
|
6274
|
+
|
|
6167
6275
|
readonly __tsonic_iface_System_IComparable: never;
|
|
6168
6276
|
readonly __tsonic_iface_System_IConvertible: never;
|
|
6169
6277
|
readonly __tsonic_iface_System_IFormattable: never;
|
|
@@ -6233,12 +6341,12 @@ export interface __Enum$views {
|
|
|
6233
6341
|
CompareTo(obj: unknown): int;
|
|
6234
6342
|
}
|
|
6235
6343
|
|
|
6236
|
-
export interface Enum$instance extends IComparable$instance {}
|
|
6237
|
-
|
|
6238
6344
|
export type Enum = Enum$instance & __Enum$views;
|
|
6239
6345
|
|
|
6240
6346
|
|
|
6241
6347
|
export interface EventArgs$instance {
|
|
6348
|
+
readonly __tsonic_type_System_EventArgs: never;
|
|
6349
|
+
|
|
6242
6350
|
}
|
|
6243
6351
|
|
|
6244
6352
|
|
|
@@ -6250,7 +6358,9 @@ export const EventArgs: {
|
|
|
6250
6358
|
|
|
6251
6359
|
export type EventArgs = EventArgs$instance;
|
|
6252
6360
|
|
|
6253
|
-
export interface Exception$instance {
|
|
6361
|
+
export interface Exception$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
6362
|
+
readonly __tsonic_type_System_Exception: never;
|
|
6363
|
+
|
|
6254
6364
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6255
6365
|
|
|
6256
6366
|
readonly Data: IDictionary;
|
|
@@ -6281,12 +6391,12 @@ export interface __Exception$views {
|
|
|
6281
6391
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
6282
6392
|
}
|
|
6283
6393
|
|
|
6284
|
-
export interface Exception$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
6285
|
-
|
|
6286
6394
|
export type Exception = Exception$instance & __Exception$views;
|
|
6287
6395
|
|
|
6288
6396
|
|
|
6289
6397
|
export interface ExecutionEngineException$instance extends SystemException$instance {
|
|
6398
|
+
readonly __tsonic_type_System_ExecutionEngineException: never;
|
|
6399
|
+
|
|
6290
6400
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6291
6401
|
|
|
6292
6402
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6308,6 +6418,8 @@ export type ExecutionEngineException = ExecutionEngineException$instance & __Exe
|
|
|
6308
6418
|
|
|
6309
6419
|
|
|
6310
6420
|
export interface FieldAccessException$instance extends MemberAccessException$instance {
|
|
6421
|
+
readonly __tsonic_type_System_FieldAccessException: never;
|
|
6422
|
+
|
|
6311
6423
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6312
6424
|
|
|
6313
6425
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6329,6 +6441,8 @@ export type FieldAccessException = FieldAccessException$instance & __FieldAccess
|
|
|
6329
6441
|
|
|
6330
6442
|
|
|
6331
6443
|
export interface FileStyleUriParser$instance extends UriParser {
|
|
6444
|
+
readonly __tsonic_type_System_FileStyleUriParser: never;
|
|
6445
|
+
|
|
6332
6446
|
}
|
|
6333
6447
|
|
|
6334
6448
|
|
|
@@ -6340,6 +6454,8 @@ export const FileStyleUriParser: {
|
|
|
6340
6454
|
export type FileStyleUriParser = FileStyleUriParser$instance;
|
|
6341
6455
|
|
|
6342
6456
|
export interface FlagsAttribute$instance extends Attribute {
|
|
6457
|
+
readonly __tsonic_type_System_FlagsAttribute: never;
|
|
6458
|
+
|
|
6343
6459
|
}
|
|
6344
6460
|
|
|
6345
6461
|
|
|
@@ -6351,6 +6467,8 @@ export const FlagsAttribute: {
|
|
|
6351
6467
|
export type FlagsAttribute = FlagsAttribute$instance;
|
|
6352
6468
|
|
|
6353
6469
|
export interface FormatException$instance extends SystemException$instance {
|
|
6470
|
+
readonly __tsonic_type_System_FormatException: never;
|
|
6471
|
+
|
|
6354
6472
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6355
6473
|
|
|
6356
6474
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6372,6 +6490,8 @@ export type FormatException = FormatException$instance & __FormatException$views
|
|
|
6372
6490
|
|
|
6373
6491
|
|
|
6374
6492
|
export interface FormattableString$instance {
|
|
6493
|
+
readonly __tsonic_type_System_FormattableString: never;
|
|
6494
|
+
|
|
6375
6495
|
readonly __tsonic_iface_System_IFormattable: never;
|
|
6376
6496
|
|
|
6377
6497
|
readonly ArgumentCount: int;
|
|
@@ -6397,6 +6517,8 @@ export type FormattableString = FormattableString$instance & __FormattableString
|
|
|
6397
6517
|
|
|
6398
6518
|
|
|
6399
6519
|
export interface FtpStyleUriParser$instance extends UriParser {
|
|
6520
|
+
readonly __tsonic_type_System_FtpStyleUriParser: never;
|
|
6521
|
+
|
|
6400
6522
|
}
|
|
6401
6523
|
|
|
6402
6524
|
|
|
@@ -6408,6 +6530,8 @@ export const FtpStyleUriParser: {
|
|
|
6408
6530
|
export type FtpStyleUriParser = FtpStyleUriParser$instance;
|
|
6409
6531
|
|
|
6410
6532
|
export interface GenericUriParser$instance extends UriParser {
|
|
6533
|
+
readonly __tsonic_type_System_GenericUriParser: never;
|
|
6534
|
+
|
|
6411
6535
|
}
|
|
6412
6536
|
|
|
6413
6537
|
|
|
@@ -6419,6 +6543,8 @@ export const GenericUriParser: {
|
|
|
6419
6543
|
export type GenericUriParser = GenericUriParser$instance;
|
|
6420
6544
|
|
|
6421
6545
|
export interface GopherStyleUriParser$instance extends UriParser {
|
|
6546
|
+
readonly __tsonic_type_System_GopherStyleUriParser: never;
|
|
6547
|
+
|
|
6422
6548
|
}
|
|
6423
6549
|
|
|
6424
6550
|
|
|
@@ -6430,6 +6556,8 @@ export const GopherStyleUriParser: {
|
|
|
6430
6556
|
export type GopherStyleUriParser = GopherStyleUriParser$instance;
|
|
6431
6557
|
|
|
6432
6558
|
export interface HttpStyleUriParser$instance extends UriParser {
|
|
6559
|
+
readonly __tsonic_type_System_HttpStyleUriParser: never;
|
|
6560
|
+
|
|
6433
6561
|
}
|
|
6434
6562
|
|
|
6435
6563
|
|
|
@@ -6441,6 +6569,8 @@ export const HttpStyleUriParser: {
|
|
|
6441
6569
|
export type HttpStyleUriParser = HttpStyleUriParser$instance;
|
|
6442
6570
|
|
|
6443
6571
|
export interface IndexOutOfRangeException$instance extends SystemException$instance {
|
|
6572
|
+
readonly __tsonic_type_System_IndexOutOfRangeException: never;
|
|
6573
|
+
|
|
6444
6574
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6445
6575
|
|
|
6446
6576
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6462,6 +6592,8 @@ export type IndexOutOfRangeException = IndexOutOfRangeException$instance & __Ind
|
|
|
6462
6592
|
|
|
6463
6593
|
|
|
6464
6594
|
export interface InsufficientExecutionStackException$instance extends SystemException$instance {
|
|
6595
|
+
readonly __tsonic_type_System_InsufficientExecutionStackException: never;
|
|
6596
|
+
|
|
6465
6597
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6466
6598
|
|
|
6467
6599
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6483,6 +6615,8 @@ export type InsufficientExecutionStackException = InsufficientExecutionStackExce
|
|
|
6483
6615
|
|
|
6484
6616
|
|
|
6485
6617
|
export interface InsufficientMemoryException$instance extends OutOfMemoryException$instance {
|
|
6618
|
+
readonly __tsonic_type_System_InsufficientMemoryException: never;
|
|
6619
|
+
|
|
6486
6620
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6487
6621
|
|
|
6488
6622
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6504,6 +6638,8 @@ export type InsufficientMemoryException = InsufficientMemoryException$instance &
|
|
|
6504
6638
|
|
|
6505
6639
|
|
|
6506
6640
|
export interface InvalidCastException$instance extends SystemException$instance {
|
|
6641
|
+
readonly __tsonic_type_System_InvalidCastException: never;
|
|
6642
|
+
|
|
6507
6643
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6508
6644
|
|
|
6509
6645
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6526,6 +6662,8 @@ export type InvalidCastException = InvalidCastException$instance & __InvalidCast
|
|
|
6526
6662
|
|
|
6527
6663
|
|
|
6528
6664
|
export interface InvalidOperationException$instance extends SystemException$instance {
|
|
6665
|
+
readonly __tsonic_type_System_InvalidOperationException: never;
|
|
6666
|
+
|
|
6529
6667
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6530
6668
|
|
|
6531
6669
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6547,6 +6685,8 @@ export type InvalidOperationException = InvalidOperationException$instance & __I
|
|
|
6547
6685
|
|
|
6548
6686
|
|
|
6549
6687
|
export interface InvalidProgramException$instance extends SystemException$instance {
|
|
6688
|
+
readonly __tsonic_type_System_InvalidProgramException: never;
|
|
6689
|
+
|
|
6550
6690
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6551
6691
|
|
|
6552
6692
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6568,6 +6708,8 @@ export type InvalidProgramException = InvalidProgramException$instance & __Inval
|
|
|
6568
6708
|
|
|
6569
6709
|
|
|
6570
6710
|
export interface InvalidTimeZoneException$instance extends Exception$instance {
|
|
6711
|
+
readonly __tsonic_type_System_InvalidTimeZoneException: never;
|
|
6712
|
+
|
|
6571
6713
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6572
6714
|
|
|
6573
6715
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6589,6 +6731,8 @@ export type InvalidTimeZoneException = InvalidTimeZoneException$instance & __Inv
|
|
|
6589
6731
|
|
|
6590
6732
|
|
|
6591
6733
|
export interface Lazy_1$instance<T> {
|
|
6734
|
+
readonly __tsonic_type_System_Lazy_1: never;
|
|
6735
|
+
|
|
6592
6736
|
readonly IsValueCreated: boolean;
|
|
6593
6737
|
readonly Value: T;
|
|
6594
6738
|
ToString(): string | undefined;
|
|
@@ -6609,6 +6753,8 @@ export const Lazy_1: {
|
|
|
6609
6753
|
export type Lazy_1<T> = Lazy_1$instance<T>;
|
|
6610
6754
|
|
|
6611
6755
|
export interface Lazy_2$instance<T, TMetadata> extends Lazy_1<T> {
|
|
6756
|
+
readonly __tsonic_type_System_Lazy_2: never;
|
|
6757
|
+
|
|
6612
6758
|
readonly Metadata: TMetadata;
|
|
6613
6759
|
}
|
|
6614
6760
|
|
|
@@ -6626,6 +6772,8 @@ export const Lazy_2: {
|
|
|
6626
6772
|
export type Lazy_2<T, TMetadata> = Lazy_2$instance<T, TMetadata>;
|
|
6627
6773
|
|
|
6628
6774
|
export interface LdapStyleUriParser$instance extends UriParser {
|
|
6775
|
+
readonly __tsonic_type_System_LdapStyleUriParser: never;
|
|
6776
|
+
|
|
6629
6777
|
}
|
|
6630
6778
|
|
|
6631
6779
|
|
|
@@ -6637,6 +6785,8 @@ export const LdapStyleUriParser: {
|
|
|
6637
6785
|
export type LdapStyleUriParser = LdapStyleUriParser$instance;
|
|
6638
6786
|
|
|
6639
6787
|
export interface LoaderOptimizationAttribute$instance extends Attribute {
|
|
6788
|
+
readonly __tsonic_type_System_LoaderOptimizationAttribute: never;
|
|
6789
|
+
|
|
6640
6790
|
readonly Value: LoaderOptimization;
|
|
6641
6791
|
}
|
|
6642
6792
|
|
|
@@ -6650,6 +6800,8 @@ export const LoaderOptimizationAttribute: {
|
|
|
6650
6800
|
export type LoaderOptimizationAttribute = LoaderOptimizationAttribute$instance;
|
|
6651
6801
|
|
|
6652
6802
|
export interface LocalDataStoreSlot$instance {
|
|
6803
|
+
readonly __tsonic_type_System_LocalDataStoreSlot: never;
|
|
6804
|
+
|
|
6653
6805
|
Finalize(): void;
|
|
6654
6806
|
}
|
|
6655
6807
|
|
|
@@ -6661,6 +6813,8 @@ export const LocalDataStoreSlot: {
|
|
|
6661
6813
|
export type LocalDataStoreSlot = LocalDataStoreSlot$instance;
|
|
6662
6814
|
|
|
6663
6815
|
export interface MarshalByRefObject$instance {
|
|
6816
|
+
readonly __tsonic_type_System_MarshalByRefObject: never;
|
|
6817
|
+
|
|
6664
6818
|
GetLifetimeService(): unknown;
|
|
6665
6819
|
InitializeLifetimeService(): unknown;
|
|
6666
6820
|
}
|
|
@@ -6673,6 +6827,8 @@ export const MarshalByRefObject: (abstract new() => MarshalByRefObject) & {
|
|
|
6673
6827
|
export type MarshalByRefObject = MarshalByRefObject$instance;
|
|
6674
6828
|
|
|
6675
6829
|
export interface MemberAccessException$instance extends SystemException$instance {
|
|
6830
|
+
readonly __tsonic_type_System_MemberAccessException: never;
|
|
6831
|
+
|
|
6676
6832
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6677
6833
|
|
|
6678
6834
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6694,6 +6850,8 @@ export type MemberAccessException = MemberAccessException$instance & __MemberAcc
|
|
|
6694
6850
|
|
|
6695
6851
|
|
|
6696
6852
|
export interface MethodAccessException$instance extends MemberAccessException$instance {
|
|
6853
|
+
readonly __tsonic_type_System_MethodAccessException: never;
|
|
6854
|
+
|
|
6697
6855
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6698
6856
|
|
|
6699
6857
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6715,6 +6873,8 @@ export type MethodAccessException = MethodAccessException$instance & __MethodAcc
|
|
|
6715
6873
|
|
|
6716
6874
|
|
|
6717
6875
|
export interface MissingFieldException$instance extends MissingMemberException$instance {
|
|
6876
|
+
readonly __tsonic_type_System_MissingFieldException: never;
|
|
6877
|
+
|
|
6718
6878
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6719
6879
|
|
|
6720
6880
|
readonly Message: string;
|
|
@@ -6738,6 +6898,8 @@ export type MissingFieldException = MissingFieldException$instance & __MissingFi
|
|
|
6738
6898
|
|
|
6739
6899
|
|
|
6740
6900
|
export interface MissingMemberException$instance extends MemberAccessException$instance {
|
|
6901
|
+
readonly __tsonic_type_System_MissingMemberException: never;
|
|
6902
|
+
|
|
6741
6903
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6742
6904
|
|
|
6743
6905
|
readonly Message: string;
|
|
@@ -6761,6 +6923,8 @@ export type MissingMemberException = MissingMemberException$instance & __Missing
|
|
|
6761
6923
|
|
|
6762
6924
|
|
|
6763
6925
|
export interface MissingMethodException$instance extends MissingMemberException$instance {
|
|
6926
|
+
readonly __tsonic_type_System_MissingMethodException: never;
|
|
6927
|
+
|
|
6764
6928
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6765
6929
|
|
|
6766
6930
|
readonly Message: string;
|
|
@@ -6784,6 +6948,8 @@ export type MissingMethodException = MissingMethodException$instance & __Missing
|
|
|
6784
6948
|
|
|
6785
6949
|
|
|
6786
6950
|
export interface MTAThreadAttribute$instance extends Attribute {
|
|
6951
|
+
readonly __tsonic_type_System_MTAThreadAttribute: never;
|
|
6952
|
+
|
|
6787
6953
|
}
|
|
6788
6954
|
|
|
6789
6955
|
|
|
@@ -6795,6 +6961,8 @@ export const MTAThreadAttribute: {
|
|
|
6795
6961
|
export type MTAThreadAttribute = MTAThreadAttribute$instance;
|
|
6796
6962
|
|
|
6797
6963
|
export interface MulticastDelegate$instance extends Function {
|
|
6964
|
+
readonly __tsonic_type_System_MulticastDelegate: never;
|
|
6965
|
+
|
|
6798
6966
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
6799
6967
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6800
6968
|
|
|
@@ -6822,6 +6990,8 @@ export type MulticastDelegate = MulticastDelegate$instance & __MulticastDelegate
|
|
|
6822
6990
|
|
|
6823
6991
|
|
|
6824
6992
|
export interface MulticastNotSupportedException$instance extends SystemException$instance {
|
|
6993
|
+
readonly __tsonic_type_System_MulticastNotSupportedException: never;
|
|
6994
|
+
|
|
6825
6995
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6826
6996
|
|
|
6827
6997
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6843,6 +7013,8 @@ export type MulticastNotSupportedException = MulticastNotSupportedException$inst
|
|
|
6843
7013
|
|
|
6844
7014
|
|
|
6845
7015
|
export interface NetPipeStyleUriParser$instance extends UriParser {
|
|
7016
|
+
readonly __tsonic_type_System_NetPipeStyleUriParser: never;
|
|
7017
|
+
|
|
6846
7018
|
}
|
|
6847
7019
|
|
|
6848
7020
|
|
|
@@ -6854,6 +7026,8 @@ export const NetPipeStyleUriParser: {
|
|
|
6854
7026
|
export type NetPipeStyleUriParser = NetPipeStyleUriParser$instance;
|
|
6855
7027
|
|
|
6856
7028
|
export interface NetTcpStyleUriParser$instance extends UriParser {
|
|
7029
|
+
readonly __tsonic_type_System_NetTcpStyleUriParser: never;
|
|
7030
|
+
|
|
6857
7031
|
}
|
|
6858
7032
|
|
|
6859
7033
|
|
|
@@ -6865,6 +7039,8 @@ export const NetTcpStyleUriParser: {
|
|
|
6865
7039
|
export type NetTcpStyleUriParser = NetTcpStyleUriParser$instance;
|
|
6866
7040
|
|
|
6867
7041
|
export interface NewsStyleUriParser$instance extends UriParser {
|
|
7042
|
+
readonly __tsonic_type_System_NewsStyleUriParser: never;
|
|
7043
|
+
|
|
6868
7044
|
}
|
|
6869
7045
|
|
|
6870
7046
|
|
|
@@ -6876,6 +7052,8 @@ export const NewsStyleUriParser: {
|
|
|
6876
7052
|
export type NewsStyleUriParser = NewsStyleUriParser$instance;
|
|
6877
7053
|
|
|
6878
7054
|
export interface NonSerializedAttribute$instance extends Attribute {
|
|
7055
|
+
readonly __tsonic_type_System_NonSerializedAttribute: never;
|
|
7056
|
+
|
|
6879
7057
|
}
|
|
6880
7058
|
|
|
6881
7059
|
|
|
@@ -6887,6 +7065,8 @@ export const NonSerializedAttribute: {
|
|
|
6887
7065
|
export type NonSerializedAttribute = NonSerializedAttribute$instance;
|
|
6888
7066
|
|
|
6889
7067
|
export interface NotFiniteNumberException$instance extends ArithmeticException$instance {
|
|
7068
|
+
readonly __tsonic_type_System_NotFiniteNumberException: never;
|
|
7069
|
+
|
|
6890
7070
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6891
7071
|
|
|
6892
7072
|
readonly OffendingNumber: double;
|
|
@@ -6912,6 +7092,8 @@ export type NotFiniteNumberException = NotFiniteNumberException$instance & __Not
|
|
|
6912
7092
|
|
|
6913
7093
|
|
|
6914
7094
|
export interface NotImplementedException$instance extends SystemException$instance {
|
|
7095
|
+
readonly __tsonic_type_System_NotImplementedException: never;
|
|
7096
|
+
|
|
6915
7097
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6916
7098
|
|
|
6917
7099
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6933,6 +7115,8 @@ export type NotImplementedException = NotImplementedException$instance & __NotIm
|
|
|
6933
7115
|
|
|
6934
7116
|
|
|
6935
7117
|
export interface NotSupportedException$instance extends SystemException$instance {
|
|
7118
|
+
readonly __tsonic_type_System_NotSupportedException: never;
|
|
7119
|
+
|
|
6936
7120
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6937
7121
|
|
|
6938
7122
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6954,6 +7138,8 @@ export type NotSupportedException = NotSupportedException$instance & __NotSuppor
|
|
|
6954
7138
|
|
|
6955
7139
|
|
|
6956
7140
|
export interface NullReferenceException$instance extends SystemException$instance {
|
|
7141
|
+
readonly __tsonic_type_System_NullReferenceException: never;
|
|
7142
|
+
|
|
6957
7143
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6958
7144
|
|
|
6959
7145
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -6975,6 +7161,8 @@ export type NullReferenceException = NullReferenceException$instance & __NullRef
|
|
|
6975
7161
|
|
|
6976
7162
|
|
|
6977
7163
|
export interface Object$instance {
|
|
7164
|
+
readonly __tsonic_type_System_Object: never;
|
|
7165
|
+
|
|
6978
7166
|
Equals(obj: unknown): boolean;
|
|
6979
7167
|
Finalize(): void;
|
|
6980
7168
|
GetHashCode(): int;
|
|
@@ -6993,6 +7181,8 @@ export const Object: {
|
|
|
6993
7181
|
export type Object = Object$instance;
|
|
6994
7182
|
|
|
6995
7183
|
export interface ObjectDisposedException$instance extends InvalidOperationException$instance {
|
|
7184
|
+
readonly __tsonic_type_System_ObjectDisposedException: never;
|
|
7185
|
+
|
|
6996
7186
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
6997
7187
|
|
|
6998
7188
|
readonly Message: string;
|
|
@@ -7018,6 +7208,8 @@ export type ObjectDisposedException = ObjectDisposedException$instance & __Objec
|
|
|
7018
7208
|
|
|
7019
7209
|
|
|
7020
7210
|
export interface ObsoleteAttribute$instance extends Attribute {
|
|
7211
|
+
readonly __tsonic_type_System_ObsoleteAttribute: never;
|
|
7212
|
+
|
|
7021
7213
|
get DiagnosticId(): string | undefined;
|
|
7022
7214
|
set DiagnosticId(value: string | undefined);
|
|
7023
7215
|
readonly IsError: boolean;
|
|
@@ -7036,7 +7228,9 @@ export const ObsoleteAttribute: {
|
|
|
7036
7228
|
|
|
7037
7229
|
export type ObsoleteAttribute = ObsoleteAttribute$instance;
|
|
7038
7230
|
|
|
7039
|
-
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
|
+
|
|
7040
7234
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
7041
7235
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7042
7236
|
|
|
@@ -7081,12 +7275,12 @@ export interface __OperatingSystem$views {
|
|
|
7081
7275
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
7082
7276
|
}
|
|
7083
7277
|
|
|
7084
|
-
export interface OperatingSystem$instance extends ICloneable$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
7085
|
-
|
|
7086
7278
|
export type OperatingSystem = OperatingSystem$instance & __OperatingSystem$views;
|
|
7087
7279
|
|
|
7088
7280
|
|
|
7089
7281
|
export interface OperationCanceledException$instance extends SystemException$instance {
|
|
7282
|
+
readonly __tsonic_type_System_OperationCanceledException: never;
|
|
7283
|
+
|
|
7090
7284
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7091
7285
|
|
|
7092
7286
|
CancellationToken: CancellationToken;
|
|
@@ -7112,6 +7306,8 @@ export type OperationCanceledException = OperationCanceledException$instance & _
|
|
|
7112
7306
|
|
|
7113
7307
|
|
|
7114
7308
|
export interface OrdinalComparer$instance extends StringComparer$instance {
|
|
7309
|
+
readonly __tsonic_type_System_OrdinalComparer: never;
|
|
7310
|
+
|
|
7115
7311
|
readonly __tsonic_iface_System_Collections_Generic_IAlternateEqualityComparer_2: never;
|
|
7116
7312
|
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
7117
7313
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
@@ -7146,6 +7342,8 @@ export type OrdinalComparer = OrdinalComparer$instance & __OrdinalComparer$views
|
|
|
7146
7342
|
|
|
7147
7343
|
|
|
7148
7344
|
export interface OutOfMemoryException$instance extends SystemException$instance {
|
|
7345
|
+
readonly __tsonic_type_System_OutOfMemoryException: never;
|
|
7346
|
+
|
|
7149
7347
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7150
7348
|
|
|
7151
7349
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -7167,6 +7365,8 @@ export type OutOfMemoryException = OutOfMemoryException$instance & __OutOfMemory
|
|
|
7167
7365
|
|
|
7168
7366
|
|
|
7169
7367
|
export interface OverflowException$instance extends ArithmeticException$instance {
|
|
7368
|
+
readonly __tsonic_type_System_OverflowException: never;
|
|
7369
|
+
|
|
7170
7370
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7171
7371
|
|
|
7172
7372
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -7188,6 +7388,8 @@ export type OverflowException = OverflowException$instance & __OverflowException
|
|
|
7188
7388
|
|
|
7189
7389
|
|
|
7190
7390
|
export interface ParamArrayAttribute$instance extends Attribute {
|
|
7391
|
+
readonly __tsonic_type_System_ParamArrayAttribute: never;
|
|
7392
|
+
|
|
7191
7393
|
}
|
|
7192
7394
|
|
|
7193
7395
|
|
|
@@ -7199,6 +7401,8 @@ export const ParamArrayAttribute: {
|
|
|
7199
7401
|
export type ParamArrayAttribute = ParamArrayAttribute$instance;
|
|
7200
7402
|
|
|
7201
7403
|
export interface PlatformNotSupportedException$instance extends NotSupportedException$instance {
|
|
7404
|
+
readonly __tsonic_type_System_PlatformNotSupportedException: never;
|
|
7405
|
+
|
|
7202
7406
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7203
7407
|
|
|
7204
7408
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -7219,7 +7423,9 @@ export interface __PlatformNotSupportedException$views {
|
|
|
7219
7423
|
export type PlatformNotSupportedException = PlatformNotSupportedException$instance & __PlatformNotSupportedException$views;
|
|
7220
7424
|
|
|
7221
7425
|
|
|
7222
|
-
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
|
+
|
|
7223
7429
|
readonly __tsonic_iface_System_IProgress_1: never;
|
|
7224
7430
|
|
|
7225
7431
|
OnReport(value: T): void;
|
|
@@ -7236,12 +7442,12 @@ export interface __Progress_1$views<T> {
|
|
|
7236
7442
|
As_IProgress_1(): IProgress_1$instance<T>;
|
|
7237
7443
|
}
|
|
7238
7444
|
|
|
7239
|
-
export interface Progress_1$instance<T> extends IProgress_1$instance<T> {}
|
|
7240
|
-
|
|
7241
7445
|
export type Progress_1<T> = Progress_1$instance<T> & __Progress_1$views<T>;
|
|
7242
7446
|
|
|
7243
7447
|
|
|
7244
7448
|
export interface Random$instance {
|
|
7449
|
+
readonly __tsonic_type_System_Random: never;
|
|
7450
|
+
|
|
7245
7451
|
GetHexString(stringLength: int, lowercase?: boolean): string;
|
|
7246
7452
|
GetHexString(destination: Span_1<Char>, lowercase?: boolean): void;
|
|
7247
7453
|
GetItems<T>(choices: ReadOnlySpan_1<T>, destination: Span_1<T>): void;
|
|
@@ -7274,6 +7480,8 @@ export const Random: {
|
|
|
7274
7480
|
export type Random = Random$instance;
|
|
7275
7481
|
|
|
7276
7482
|
export interface RankException$instance extends SystemException$instance {
|
|
7483
|
+
readonly __tsonic_type_System_RankException: never;
|
|
7484
|
+
|
|
7277
7485
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7278
7486
|
|
|
7279
7487
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -7295,6 +7503,8 @@ export type RankException = RankException$instance & __RankException$views;
|
|
|
7295
7503
|
|
|
7296
7504
|
|
|
7297
7505
|
export interface ResolveEventArgs$instance extends EventArgs {
|
|
7506
|
+
readonly __tsonic_type_System_ResolveEventArgs: never;
|
|
7507
|
+
|
|
7298
7508
|
readonly Name: string;
|
|
7299
7509
|
readonly RequestingAssembly: Assembly | undefined;
|
|
7300
7510
|
}
|
|
@@ -7309,6 +7519,8 @@ export const ResolveEventArgs: {
|
|
|
7309
7519
|
export type ResolveEventArgs = ResolveEventArgs$instance;
|
|
7310
7520
|
|
|
7311
7521
|
export interface SerializableAttribute$instance extends Attribute {
|
|
7522
|
+
readonly __tsonic_type_System_SerializableAttribute: never;
|
|
7523
|
+
|
|
7312
7524
|
}
|
|
7313
7525
|
|
|
7314
7526
|
|
|
@@ -7320,6 +7532,8 @@ export const SerializableAttribute: {
|
|
|
7320
7532
|
export type SerializableAttribute = SerializableAttribute$instance;
|
|
7321
7533
|
|
|
7322
7534
|
export interface StackOverflowException$instance extends SystemException$instance {
|
|
7535
|
+
readonly __tsonic_type_System_StackOverflowException: never;
|
|
7536
|
+
|
|
7323
7537
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7324
7538
|
|
|
7325
7539
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -7341,6 +7555,8 @@ export type StackOverflowException = StackOverflowException$instance & __StackOv
|
|
|
7341
7555
|
|
|
7342
7556
|
|
|
7343
7557
|
export interface STAThreadAttribute$instance extends Attribute {
|
|
7558
|
+
readonly __tsonic_type_System_STAThreadAttribute: never;
|
|
7559
|
+
|
|
7344
7560
|
}
|
|
7345
7561
|
|
|
7346
7562
|
|
|
@@ -7352,6 +7568,8 @@ export const STAThreadAttribute: {
|
|
|
7352
7568
|
export type STAThreadAttribute = STAThreadAttribute$instance;
|
|
7353
7569
|
|
|
7354
7570
|
export interface String$instance {
|
|
7571
|
+
readonly __tsonic_type_System_String: never;
|
|
7572
|
+
|
|
7355
7573
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
7356
7574
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
7357
7575
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
@@ -7568,12 +7786,12 @@ export interface __String$views {
|
|
|
7568
7786
|
CompareTo(obj: unknown): int;
|
|
7569
7787
|
}
|
|
7570
7788
|
|
|
7571
|
-
export interface String$instance extends ICloneable$instance, ISpanParsable_1$instance<String> {}
|
|
7572
|
-
|
|
7573
7789
|
export type String = string & String$instance & __String$views;
|
|
7574
7790
|
|
|
7575
7791
|
|
|
7576
7792
|
export interface StringComparer$instance {
|
|
7793
|
+
readonly __tsonic_type_System_StringComparer: never;
|
|
7794
|
+
|
|
7577
7795
|
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
7578
7796
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
7579
7797
|
readonly __tsonic_iface_System_Collections_IComparer: never;
|
|
@@ -7614,6 +7832,8 @@ export type StringComparer = StringComparer$instance & __StringComparer$views;
|
|
|
7614
7832
|
|
|
7615
7833
|
|
|
7616
7834
|
export interface SystemException$instance extends Exception$instance {
|
|
7835
|
+
readonly __tsonic_type_System_SystemException: never;
|
|
7836
|
+
|
|
7617
7837
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7618
7838
|
|
|
7619
7839
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -7635,6 +7855,8 @@ export type SystemException = SystemException$instance & __SystemException$views
|
|
|
7635
7855
|
|
|
7636
7856
|
|
|
7637
7857
|
export interface ThreadStaticAttribute$instance extends Attribute {
|
|
7858
|
+
readonly __tsonic_type_System_ThreadStaticAttribute: never;
|
|
7859
|
+
|
|
7638
7860
|
}
|
|
7639
7861
|
|
|
7640
7862
|
|
|
@@ -7646,6 +7868,8 @@ export const ThreadStaticAttribute: {
|
|
|
7646
7868
|
export type ThreadStaticAttribute = ThreadStaticAttribute$instance;
|
|
7647
7869
|
|
|
7648
7870
|
export interface TimeoutException$instance extends SystemException$instance {
|
|
7871
|
+
readonly __tsonic_type_System_TimeoutException: never;
|
|
7872
|
+
|
|
7649
7873
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7650
7874
|
|
|
7651
7875
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -7667,6 +7891,8 @@ export type TimeoutException = TimeoutException$instance & __TimeoutException$vi
|
|
|
7667
7891
|
|
|
7668
7892
|
|
|
7669
7893
|
export interface TimeProvider$instance {
|
|
7894
|
+
readonly __tsonic_type_System_TimeProvider: never;
|
|
7895
|
+
|
|
7670
7896
|
readonly LocalTimeZone: TimeZoneInfo;
|
|
7671
7897
|
readonly TimestampFrequency: long;
|
|
7672
7898
|
CreateTimer(callback: TimerCallback, state: unknown, dueTime: TimeSpan, period: TimeSpan): ITimer;
|
|
@@ -7686,6 +7912,8 @@ export const TimeProvider: (abstract new() => TimeProvider) & {
|
|
|
7686
7912
|
export type TimeProvider = TimeProvider$instance;
|
|
7687
7913
|
|
|
7688
7914
|
export interface TimeZone$instance {
|
|
7915
|
+
readonly __tsonic_type_System_TimeZone: never;
|
|
7916
|
+
|
|
7689
7917
|
readonly DaylightName: string;
|
|
7690
7918
|
readonly StandardName: string;
|
|
7691
7919
|
GetDaylightChanges(year: int): DaylightTime;
|
|
@@ -7704,7 +7932,9 @@ export const TimeZone: (abstract new() => TimeZone) & {
|
|
|
7704
7932
|
|
|
7705
7933
|
export type TimeZone = TimeZone$instance;
|
|
7706
7934
|
|
|
7707
|
-
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
|
+
|
|
7708
7938
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
7709
7939
|
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
7710
7940
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
@@ -7771,12 +8001,12 @@ export interface __TimeZoneInfo$views {
|
|
|
7771
8001
|
Equals(other: TimeZoneInfo): boolean;
|
|
7772
8002
|
}
|
|
7773
8003
|
|
|
7774
|
-
export interface TimeZoneInfo$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
7775
|
-
|
|
7776
8004
|
export type TimeZoneInfo = TimeZoneInfo$instance & __TimeZoneInfo$views;
|
|
7777
8005
|
|
|
7778
8006
|
|
|
7779
|
-
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
|
+
|
|
7780
8010
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
7781
8011
|
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
7782
8012
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
@@ -7808,12 +8038,12 @@ export interface __TimeZoneInfo_AdjustmentRule$views {
|
|
|
7808
8038
|
Equals(other: TimeZoneInfo_AdjustmentRule): boolean;
|
|
7809
8039
|
}
|
|
7810
8040
|
|
|
7811
|
-
export interface TimeZoneInfo_AdjustmentRule$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
7812
|
-
|
|
7813
8041
|
export type TimeZoneInfo_AdjustmentRule = TimeZoneInfo_AdjustmentRule$instance & __TimeZoneInfo_AdjustmentRule$views;
|
|
7814
8042
|
|
|
7815
8043
|
|
|
7816
8044
|
export interface TimeZoneNotFoundException$instance extends Exception$instance {
|
|
8045
|
+
readonly __tsonic_type_System_TimeZoneNotFoundException: never;
|
|
8046
|
+
|
|
7817
8047
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
7818
8048
|
|
|
7819
8049
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -7834,7 +8064,9 @@ export interface __TimeZoneNotFoundException$views {
|
|
|
7834
8064
|
export type TimeZoneNotFoundException = TimeZoneNotFoundException$instance & __TimeZoneNotFoundException$views;
|
|
7835
8065
|
|
|
7836
8066
|
|
|
7837
|
-
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
|
+
|
|
7838
8070
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
7839
8071
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
7840
8072
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -7862,12 +8094,12 @@ export interface __Tuple_1$views<T1> {
|
|
|
7862
8094
|
CompareTo(obj: unknown): int;
|
|
7863
8095
|
}
|
|
7864
8096
|
|
|
7865
|
-
export interface Tuple_1$instance<T1> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
7866
|
-
|
|
7867
8097
|
export type Tuple_1<T1> = Tuple_1$instance<T1> & __Tuple_1$views<T1>;
|
|
7868
8098
|
|
|
7869
8099
|
|
|
7870
|
-
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
|
+
|
|
7871
8103
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
7872
8104
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
7873
8105
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -7896,12 +8128,12 @@ export interface __Tuple_2$views<T1, T2> {
|
|
|
7896
8128
|
CompareTo(obj: unknown): int;
|
|
7897
8129
|
}
|
|
7898
8130
|
|
|
7899
|
-
export interface Tuple_2$instance<T1, T2> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
7900
|
-
|
|
7901
8131
|
export type Tuple_2<T1, T2> = Tuple_2$instance<T1, T2> & __Tuple_2$views<T1, T2>;
|
|
7902
8132
|
|
|
7903
8133
|
|
|
7904
|
-
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
|
+
|
|
7905
8137
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
7906
8138
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
7907
8139
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -7931,12 +8163,12 @@ export interface __Tuple_3$views<T1, T2, T3> {
|
|
|
7931
8163
|
CompareTo(obj: unknown): int;
|
|
7932
8164
|
}
|
|
7933
8165
|
|
|
7934
|
-
export interface Tuple_3$instance<T1, T2, T3> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
7935
|
-
|
|
7936
8166
|
export type Tuple_3<T1, T2, T3> = Tuple_3$instance<T1, T2, T3> & __Tuple_3$views<T1, T2, T3>;
|
|
7937
8167
|
|
|
7938
8168
|
|
|
7939
|
-
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
|
+
|
|
7940
8172
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
7941
8173
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
7942
8174
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -7967,12 +8199,12 @@ export interface __Tuple_4$views<T1, T2, T3, T4> {
|
|
|
7967
8199
|
CompareTo(obj: unknown): int;
|
|
7968
8200
|
}
|
|
7969
8201
|
|
|
7970
|
-
export interface Tuple_4$instance<T1, T2, T3, T4> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
7971
|
-
|
|
7972
8202
|
export type Tuple_4<T1, T2, T3, T4> = Tuple_4$instance<T1, T2, T3, T4> & __Tuple_4$views<T1, T2, T3, T4>;
|
|
7973
8203
|
|
|
7974
8204
|
|
|
7975
|
-
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
|
+
|
|
7976
8208
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
7977
8209
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
7978
8210
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -8004,12 +8236,12 @@ export interface __Tuple_5$views<T1, T2, T3, T4, T5> {
|
|
|
8004
8236
|
CompareTo(obj: unknown): int;
|
|
8005
8237
|
}
|
|
8006
8238
|
|
|
8007
|
-
export interface Tuple_5$instance<T1, T2, T3, T4, T5> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
8008
|
-
|
|
8009
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>;
|
|
8010
8240
|
|
|
8011
8241
|
|
|
8012
|
-
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
|
+
|
|
8013
8245
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
8014
8246
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
8015
8247
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -8042,12 +8274,12 @@ export interface __Tuple_6$views<T1, T2, T3, T4, T5, T6> {
|
|
|
8042
8274
|
CompareTo(obj: unknown): int;
|
|
8043
8275
|
}
|
|
8044
8276
|
|
|
8045
|
-
export interface Tuple_6$instance<T1, T2, T3, T4, T5, T6> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
8046
|
-
|
|
8047
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>;
|
|
8048
8278
|
|
|
8049
8279
|
|
|
8050
|
-
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
|
+
|
|
8051
8283
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
8052
8284
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
8053
8285
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -8081,12 +8313,12 @@ export interface __Tuple_7$views<T1, T2, T3, T4, T5, T6, T7> {
|
|
|
8081
8313
|
CompareTo(obj: unknown): int;
|
|
8082
8314
|
}
|
|
8083
8315
|
|
|
8084
|
-
export interface Tuple_7$instance<T1, T2, T3, T4, T5, T6, T7> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
8085
|
-
|
|
8086
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>;
|
|
8087
8317
|
|
|
8088
8318
|
|
|
8089
|
-
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
|
+
|
|
8090
8322
|
readonly __tsonic_iface_System_Collections_IStructuralComparable: never;
|
|
8091
8323
|
readonly __tsonic_iface_System_Collections_IStructuralEquatable: never;
|
|
8092
8324
|
readonly __tsonic_iface_System_IComparable: never;
|
|
@@ -8121,12 +8353,12 @@ export interface __Tuple_8$views<T1, T2, T3, T4, T5, T6, T7, TRest> {
|
|
|
8121
8353
|
CompareTo(obj: unknown): int;
|
|
8122
8354
|
}
|
|
8123
8355
|
|
|
8124
|
-
export interface Tuple_8$instance<T1, T2, T3, T4, T5, T6, T7, TRest> extends IComparable$instance, System_Runtime_CompilerServices_Internal.ITuple$instance {}
|
|
8125
|
-
|
|
8126
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>;
|
|
8127
8357
|
|
|
8128
8358
|
|
|
8129
8359
|
export interface Type$instance extends MemberInfo {
|
|
8360
|
+
readonly __tsonic_type_System_Type: never;
|
|
8361
|
+
|
|
8130
8362
|
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
8131
8363
|
readonly __tsonic_iface_System_Reflection_IReflect: never;
|
|
8132
8364
|
|
|
@@ -8349,6 +8581,8 @@ export type Type = Type$instance & __Type$views;
|
|
|
8349
8581
|
|
|
8350
8582
|
|
|
8351
8583
|
export interface TypeAccessException$instance extends TypeLoadException$instance {
|
|
8584
|
+
readonly __tsonic_type_System_TypeAccessException: never;
|
|
8585
|
+
|
|
8352
8586
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8353
8587
|
|
|
8354
8588
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -8370,6 +8604,8 @@ export type TypeAccessException = TypeAccessException$instance & __TypeAccessExc
|
|
|
8370
8604
|
|
|
8371
8605
|
|
|
8372
8606
|
export interface TypeInitializationException$instance extends SystemException$instance {
|
|
8607
|
+
readonly __tsonic_type_System_TypeInitializationException: never;
|
|
8608
|
+
|
|
8373
8609
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8374
8610
|
|
|
8375
8611
|
readonly TypeName: string;
|
|
@@ -8390,6 +8626,8 @@ export type TypeInitializationException = TypeInitializationException$instance &
|
|
|
8390
8626
|
|
|
8391
8627
|
|
|
8392
8628
|
export interface TypeLoadException$instance extends SystemException$instance {
|
|
8629
|
+
readonly __tsonic_type_System_TypeLoadException: never;
|
|
8630
|
+
|
|
8393
8631
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8394
8632
|
|
|
8395
8633
|
readonly Message: string;
|
|
@@ -8413,6 +8651,8 @@ export type TypeLoadException = TypeLoadException$instance & __TypeLoadException
|
|
|
8413
8651
|
|
|
8414
8652
|
|
|
8415
8653
|
export interface TypeUnloadedException$instance extends SystemException$instance {
|
|
8654
|
+
readonly __tsonic_type_System_TypeUnloadedException: never;
|
|
8655
|
+
|
|
8416
8656
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8417
8657
|
|
|
8418
8658
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -8434,6 +8674,8 @@ export type TypeUnloadedException = TypeUnloadedException$instance & __TypeUnloa
|
|
|
8434
8674
|
|
|
8435
8675
|
|
|
8436
8676
|
export interface UnauthorizedAccessException$instance extends SystemException$instance {
|
|
8677
|
+
readonly __tsonic_type_System_UnauthorizedAccessException: never;
|
|
8678
|
+
|
|
8437
8679
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8438
8680
|
|
|
8439
8681
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -8455,6 +8697,8 @@ export type UnauthorizedAccessException = UnauthorizedAccessException$instance &
|
|
|
8455
8697
|
|
|
8456
8698
|
|
|
8457
8699
|
export interface UnhandledExceptionEventArgs$instance extends EventArgs {
|
|
8700
|
+
readonly __tsonic_type_System_UnhandledExceptionEventArgs: never;
|
|
8701
|
+
|
|
8458
8702
|
readonly ExceptionObject: unknown;
|
|
8459
8703
|
readonly IsTerminating: boolean;
|
|
8460
8704
|
}
|
|
@@ -8467,7 +8711,9 @@ export const UnhandledExceptionEventArgs: {
|
|
|
8467
8711
|
|
|
8468
8712
|
export type UnhandledExceptionEventArgs = UnhandledExceptionEventArgs$instance;
|
|
8469
8713
|
|
|
8470
|
-
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
|
+
|
|
8471
8717
|
readonly __tsonic_iface_System_Runtime_Serialization_IObjectReference: never;
|
|
8472
8718
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8473
8719
|
|
|
@@ -8486,12 +8732,12 @@ export interface __UnitySerializationHolder$views {
|
|
|
8486
8732
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
8487
8733
|
}
|
|
8488
8734
|
|
|
8489
|
-
export interface UnitySerializationHolder$instance extends System_Runtime_Serialization_Internal.IObjectReference$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
8490
|
-
|
|
8491
8735
|
export type UnitySerializationHolder = UnitySerializationHolder$instance & __UnitySerializationHolder$views;
|
|
8492
8736
|
|
|
8493
8737
|
|
|
8494
|
-
export interface Uri$instance {
|
|
8738
|
+
export interface Uri$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
8739
|
+
readonly __tsonic_type_System_Uri: never;
|
|
8740
|
+
|
|
8495
8741
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
8496
8742
|
readonly __tsonic_iface_System_IFormattable: never;
|
|
8497
8743
|
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
@@ -8600,12 +8846,12 @@ export interface __Uri$views {
|
|
|
8600
8846
|
Equals(other: Uri): boolean;
|
|
8601
8847
|
}
|
|
8602
8848
|
|
|
8603
|
-
export interface Uri$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
8604
|
-
|
|
8605
8849
|
export type Uri = Uri$instance & __Uri$views;
|
|
8606
8850
|
|
|
8607
8851
|
|
|
8608
8852
|
export interface UriBuilder$instance {
|
|
8853
|
+
readonly __tsonic_type_System_UriBuilder: never;
|
|
8854
|
+
|
|
8609
8855
|
Fragment: string;
|
|
8610
8856
|
Host: string;
|
|
8611
8857
|
Password: string;
|
|
@@ -8635,6 +8881,8 @@ export const UriBuilder: {
|
|
|
8635
8881
|
export type UriBuilder = UriBuilder$instance;
|
|
8636
8882
|
|
|
8637
8883
|
export interface UriFormatException$instance extends FormatException$instance {
|
|
8884
|
+
readonly __tsonic_type_System_UriFormatException: never;
|
|
8885
|
+
|
|
8638
8886
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8639
8887
|
|
|
8640
8888
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -8656,6 +8904,8 @@ export type UriFormatException = UriFormatException$instance & __UriFormatExcept
|
|
|
8656
8904
|
|
|
8657
8905
|
|
|
8658
8906
|
export interface UriParser$instance {
|
|
8907
|
+
readonly __tsonic_type_System_UriParser: never;
|
|
8908
|
+
|
|
8659
8909
|
GetComponents(uri: Uri, components: UriComponents, format: UriFormat): string;
|
|
8660
8910
|
InitializeAndValidate(uri: Uri, parsingError: UriFormatException): void;
|
|
8661
8911
|
IsBaseOf(baseUri: Uri, relativeUri: Uri): boolean;
|
|
@@ -8675,6 +8925,8 @@ export const UriParser: (abstract new() => UriParser) & {
|
|
|
8675
8925
|
export type UriParser = UriParser$instance;
|
|
8676
8926
|
|
|
8677
8927
|
export interface UriTypeConverter$instance extends TypeConverter {
|
|
8928
|
+
readonly __tsonic_type_System_UriTypeConverter: never;
|
|
8929
|
+
|
|
8678
8930
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
8679
8931
|
CanConvertFrom(sourceType: Type): boolean;
|
|
8680
8932
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -8696,6 +8948,8 @@ export const UriTypeConverter: {
|
|
|
8696
8948
|
export type UriTypeConverter = UriTypeConverter$instance;
|
|
8697
8949
|
|
|
8698
8950
|
export interface ValueType$instance {
|
|
8951
|
+
readonly __tsonic_type_System_ValueType: never;
|
|
8952
|
+
|
|
8699
8953
|
Equals(obj: unknown): boolean;
|
|
8700
8954
|
GetHashCode(): int;
|
|
8701
8955
|
ToString(): string | undefined;
|
|
@@ -8709,6 +8963,8 @@ export const ValueType: (abstract new() => ValueType) & {
|
|
|
8709
8963
|
export type ValueType = ValueType$instance;
|
|
8710
8964
|
|
|
8711
8965
|
export interface Version$instance {
|
|
8966
|
+
readonly __tsonic_type_System_Version: never;
|
|
8967
|
+
|
|
8712
8968
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
8713
8969
|
readonly __tsonic_iface_System_IComparable: never;
|
|
8714
8970
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
@@ -8770,12 +9026,12 @@ export interface __Version$views {
|
|
|
8770
9026
|
TryFormat(utf8Destination: Span_1<Byte>, bytesWritten: int, format: ReadOnlySpan_1<Char>, provider: IFormatProvider): boolean;
|
|
8771
9027
|
}
|
|
8772
9028
|
|
|
8773
|
-
export interface Version$instance extends ICloneable$instance, IUtf8SpanParsable_1$instance<Version> {}
|
|
8774
|
-
|
|
8775
9029
|
export type Version = Version$instance & __Version$views;
|
|
8776
9030
|
|
|
8777
9031
|
|
|
8778
|
-
export interface WeakReference$instance {
|
|
9032
|
+
export interface WeakReference$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
9033
|
+
readonly __tsonic_type_System_WeakReference: never;
|
|
9034
|
+
|
|
8779
9035
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8780
9036
|
|
|
8781
9037
|
readonly IsAlive: boolean;
|
|
@@ -8797,12 +9053,12 @@ export interface __WeakReference$views {
|
|
|
8797
9053
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
8798
9054
|
}
|
|
8799
9055
|
|
|
8800
|
-
export interface WeakReference$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
8801
|
-
|
|
8802
9056
|
export type WeakReference = WeakReference$instance & __WeakReference$views;
|
|
8803
9057
|
|
|
8804
9058
|
|
|
8805
|
-
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
|
+
|
|
8806
9062
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
8807
9063
|
|
|
8808
9064
|
Finalize(): void;
|
|
@@ -8822,8 +9078,6 @@ export interface __WeakReference_1$views<T> {
|
|
|
8822
9078
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
8823
9079
|
}
|
|
8824
9080
|
|
|
8825
|
-
export interface WeakReference_1$instance<T> extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
8826
|
-
|
|
8827
9081
|
export type WeakReference_1<T> = WeakReference_1$instance<T> & __WeakReference_1$views<T>;
|
|
8828
9082
|
|
|
8829
9083
|
|