@tsonic/dotnet 10.0.4 → 10.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +10 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +42 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +60 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +12 -0
- package/Microsoft.Win32/internal/index.d.ts +5 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +68 -0
- package/System/internal/index.d.ts +1438 -161
- package/System.Buffers/internal/index.d.ts +42 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +7 -0
- package/System.Collections/internal/index.d.ts +109 -27
- package/System.Collections.Concurrent/internal/index.d.ts +52 -3
- package/System.Collections.Frozen/internal/index.d.ts +37 -0
- package/System.Collections.Generic/internal/index.d.ts +422 -33
- package/System.Collections.Immutable/internal/index.d.ts +193 -2
- package/System.Collections.ObjectModel/internal/index.d.ts +98 -6
- package/System.Collections.Specialized/internal/index.d.ts +72 -10
- package/System.ComponentModel/internal/index.d.ts +392 -23
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +79 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +120 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +40 -0
- package/System.Data/internal/index.d.ts +273 -20
- package/System.Data.Common/internal/index.d.ts +146 -32
- package/System.Data.SqlTypes/internal/index.d.ts +147 -48
- package/System.Diagnostics/internal/index.d.ts +213 -13
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +28 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +37 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +30 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +56 -6
- package/System.Drawing/internal/index.d.ts +38 -0
- package/System.Dynamic/internal/index.d.ts +50 -5
- package/System.Formats.Asn1/internal/index.d.ts +19 -3
- package/System.Formats.Tar/internal/index.d.ts +26 -6
- package/System.Globalization/internal/index.d.ts +116 -20
- package/System.IO/internal/index.d.ts +141 -18
- package/System.IO.Compression/internal/index.d.ts +46 -9
- package/System.IO.Enumeration/internal/index.d.ts +13 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +18 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +13 -0
- package/System.IO.Pipelines/internal/index.d.ts +22 -2
- package/System.IO.Pipes/internal/index.d.ts +31 -0
- package/System.Linq/internal/index.d.ts +55 -7
- package/System.Linq.Expressions/internal/index.d.ts +103 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +202 -21
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +103 -0
- package/System.Net.Http.Headers/internal/index.d.ts +151 -60
- package/System.Net.Http.Json/internal/index.d.ts +4 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +88 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +89 -0
- package/System.Net.Quic/internal/index.d.ts +31 -6
- package/System.Net.Security/internal/index.d.ts +40 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +59 -6
- package/System.Net.WebSockets/internal/index.d.ts +32 -3
- package/System.Numerics/internal/index.d.ts +173 -7
- package/System.Reflection/internal/index.d.ts +202 -30
- package/System.Reflection.Emit/internal/index.d.ts +80 -9
- package/System.Reflection.Metadata/internal/index.d.ts +650 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +80 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +39 -3
- package/System.Resources/internal/index.d.ts +35 -1
- package/System.Runtime/internal/index.d.ts +18 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +330 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +268 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +82 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +59 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +82 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +56 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +9 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +111 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +5 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +8 -0
- package/System.Runtime.Versioning/internal/index.d.ts +28 -0
- package/System.Security/internal/index.d.ts +46 -6
- package/System.Security.AccessControl/internal/index.d.ts +116 -2
- package/System.Security.Authentication/internal/index.d.ts +8 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +16 -5
- package/System.Security.Claims/internal/index.d.ts +12 -6
- package/System.Security.Cryptography/internal/index.d.ts +568 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +114 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +7 -0
- package/System.Security.Principal/internal/index.d.ts +42 -5
- package/System.Text/internal/index.d.ts +108 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +53 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +21 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +64 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +27 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +75 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +186 -24
- package/System.Threading.Channels/internal/index.d.ts +20 -0
- package/System.Threading.Tasks/internal/index.d.ts +48 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +99 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +6 -0
- package/System.Timers/internal/index.d.ts +11 -3
- package/System.Transactions/internal/index.d.ts +76 -15
- package/System.Web/internal/index.d.ts +4 -0
- package/System.Windows.Input/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +245 -20
- package/System.Xml.Linq/internal/index.d.ts +73 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +171 -0
- package/System.Xml.Serialization/internal/index.d.ts +141 -0
- package/System.Xml.XPath/internal/index.d.ts +27 -8
- package/System.Xml.Xsl/internal/index.d.ts +27 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +112 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -153,7 +153,11 @@ export enum UnicodeCategory {
|
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
|
|
156
|
-
export interface Calendar$instance {
|
|
156
|
+
export interface Calendar$instance extends System_Internal.ICloneable$instance {
|
|
157
|
+
readonly __tsonic_type_System_Globalization_Calendar: never;
|
|
158
|
+
|
|
159
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
160
|
+
|
|
157
161
|
readonly AlgorithmType: CalendarAlgorithmType;
|
|
158
162
|
readonly DaysInYearBeforeMinSupportedYear: int;
|
|
159
163
|
readonly Eras: int[];
|
|
@@ -211,12 +215,14 @@ export interface __Calendar$views {
|
|
|
211
215
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
212
216
|
}
|
|
213
217
|
|
|
214
|
-
export interface Calendar$instance extends System_Internal.ICloneable$instance {}
|
|
215
|
-
|
|
216
218
|
export type Calendar = Calendar$instance & __Calendar$views;
|
|
217
219
|
|
|
218
220
|
|
|
219
221
|
export interface ChineseLunisolarCalendar$instance extends EastAsianLunisolarCalendar$instance {
|
|
222
|
+
readonly __tsonic_type_System_Globalization_ChineseLunisolarCalendar: never;
|
|
223
|
+
|
|
224
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
225
|
+
|
|
220
226
|
readonly DaysInYearBeforeMinSupportedYear: int;
|
|
221
227
|
readonly Eras: int[];
|
|
222
228
|
readonly MaxSupportedDateTime: DateTime;
|
|
@@ -239,7 +245,11 @@ export interface __ChineseLunisolarCalendar$views {
|
|
|
239
245
|
export type ChineseLunisolarCalendar = ChineseLunisolarCalendar$instance & __ChineseLunisolarCalendar$views;
|
|
240
246
|
|
|
241
247
|
|
|
242
|
-
export interface CompareInfo$instance {
|
|
248
|
+
export interface CompareInfo$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance {
|
|
249
|
+
readonly __tsonic_type_System_Globalization_CompareInfo: never;
|
|
250
|
+
|
|
251
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
252
|
+
|
|
243
253
|
readonly LCID: int;
|
|
244
254
|
readonly Name: string;
|
|
245
255
|
readonly Version: SortVersion;
|
|
@@ -316,12 +326,15 @@ export interface __CompareInfo$views {
|
|
|
316
326
|
As_IDeserializationCallback(): System_Runtime_Serialization_Internal.IDeserializationCallback$instance;
|
|
317
327
|
}
|
|
318
328
|
|
|
319
|
-
export interface CompareInfo$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance {}
|
|
320
|
-
|
|
321
329
|
export type CompareInfo = CompareInfo$instance & __CompareInfo$views;
|
|
322
330
|
|
|
323
331
|
|
|
324
|
-
export interface CultureInfo$instance {
|
|
332
|
+
export interface CultureInfo$instance extends System_Internal.ICloneable$instance, System_Internal.IFormatProvider$instance {
|
|
333
|
+
readonly __tsonic_type_System_Globalization_CultureInfo: never;
|
|
334
|
+
|
|
335
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
336
|
+
readonly __tsonic_iface_System_IFormatProvider: never;
|
|
337
|
+
|
|
325
338
|
readonly Calendar: Calendar;
|
|
326
339
|
readonly CompareInfo: CompareInfo;
|
|
327
340
|
readonly CultureTypes: CultureTypes;
|
|
@@ -382,12 +395,14 @@ export interface __CultureInfo$views {
|
|
|
382
395
|
As_IFormatProvider(): System_Internal.IFormatProvider$instance;
|
|
383
396
|
}
|
|
384
397
|
|
|
385
|
-
export interface CultureInfo$instance extends System_Internal.ICloneable$instance, System_Internal.IFormatProvider$instance {}
|
|
386
|
-
|
|
387
398
|
export type CultureInfo = CultureInfo$instance & __CultureInfo$views;
|
|
388
399
|
|
|
389
400
|
|
|
390
401
|
export interface CultureNotFoundException$instance extends ArgumentException {
|
|
402
|
+
readonly __tsonic_type_System_Globalization_CultureNotFoundException: never;
|
|
403
|
+
|
|
404
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
405
|
+
|
|
391
406
|
readonly InvalidCultureId: Nullable_1<System_Internal.Int32>;
|
|
392
407
|
readonly InvalidCultureName: string | undefined;
|
|
393
408
|
readonly Message: string;
|
|
@@ -414,7 +429,12 @@ export interface __CultureNotFoundException$views {
|
|
|
414
429
|
export type CultureNotFoundException = CultureNotFoundException$instance & __CultureNotFoundException$views;
|
|
415
430
|
|
|
416
431
|
|
|
417
|
-
export interface DateTimeFormatInfo$instance {
|
|
432
|
+
export interface DateTimeFormatInfo$instance extends System_Internal.ICloneable$instance, System_Internal.IFormatProvider$instance {
|
|
433
|
+
readonly __tsonic_type_System_Globalization_DateTimeFormatInfo: never;
|
|
434
|
+
|
|
435
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
436
|
+
readonly __tsonic_iface_System_IFormatProvider: never;
|
|
437
|
+
|
|
418
438
|
AbbreviatedDayNames: string[];
|
|
419
439
|
AbbreviatedMonthGenitiveNames: string[];
|
|
420
440
|
AbbreviatedMonthNames: string[];
|
|
@@ -471,12 +491,12 @@ export interface __DateTimeFormatInfo$views {
|
|
|
471
491
|
As_IFormatProvider(): System_Internal.IFormatProvider$instance;
|
|
472
492
|
}
|
|
473
493
|
|
|
474
|
-
export interface DateTimeFormatInfo$instance extends System_Internal.ICloneable$instance, System_Internal.IFormatProvider$instance {}
|
|
475
|
-
|
|
476
494
|
export type DateTimeFormatInfo = DateTimeFormatInfo$instance & __DateTimeFormatInfo$views;
|
|
477
495
|
|
|
478
496
|
|
|
479
497
|
export interface DaylightTime$instance {
|
|
498
|
+
readonly __tsonic_type_System_Globalization_DaylightTime: never;
|
|
499
|
+
|
|
480
500
|
readonly Delta: TimeSpan;
|
|
481
501
|
readonly End: DateTime;
|
|
482
502
|
readonly Start: DateTime;
|
|
@@ -491,6 +511,10 @@ export const DaylightTime: {
|
|
|
491
511
|
export type DaylightTime = DaylightTime$instance;
|
|
492
512
|
|
|
493
513
|
export interface EastAsianLunisolarCalendar$instance extends Calendar$instance {
|
|
514
|
+
readonly __tsonic_type_System_Globalization_EastAsianLunisolarCalendar: never;
|
|
515
|
+
|
|
516
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
517
|
+
|
|
494
518
|
readonly AlgorithmType: CalendarAlgorithmType;
|
|
495
519
|
TwoDigitYearMax: int;
|
|
496
520
|
AddMonths(time: DateTime, months: int): DateTime;
|
|
@@ -536,6 +560,10 @@ export type EastAsianLunisolarCalendar = EastAsianLunisolarCalendar$instance & _
|
|
|
536
560
|
|
|
537
561
|
|
|
538
562
|
export interface GregorianCalendar$instance extends Calendar$instance {
|
|
563
|
+
readonly __tsonic_type_System_Globalization_GregorianCalendar: never;
|
|
564
|
+
|
|
565
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
566
|
+
|
|
539
567
|
readonly AlgorithmType: CalendarAlgorithmType;
|
|
540
568
|
CalendarType: GregorianCalendarTypes;
|
|
541
569
|
readonly Eras: int[];
|
|
@@ -586,6 +614,10 @@ export type GregorianCalendar = GregorianCalendar$instance & __GregorianCalendar
|
|
|
586
614
|
|
|
587
615
|
|
|
588
616
|
export interface HebrewCalendar$instance extends Calendar$instance {
|
|
617
|
+
readonly __tsonic_type_System_Globalization_HebrewCalendar: never;
|
|
618
|
+
|
|
619
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
620
|
+
|
|
589
621
|
readonly AlgorithmType: CalendarAlgorithmType;
|
|
590
622
|
readonly Eras: int[];
|
|
591
623
|
readonly MaxSupportedDateTime: DateTime;
|
|
@@ -634,6 +666,10 @@ export type HebrewCalendar = HebrewCalendar$instance & __HebrewCalendar$views;
|
|
|
634
666
|
|
|
635
667
|
|
|
636
668
|
export interface HijriCalendar$instance extends Calendar$instance {
|
|
669
|
+
readonly __tsonic_type_System_Globalization_HijriCalendar: never;
|
|
670
|
+
|
|
671
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
672
|
+
|
|
637
673
|
readonly AlgorithmType: CalendarAlgorithmType;
|
|
638
674
|
readonly DaysInYearBeforeMinSupportedYear: int;
|
|
639
675
|
readonly Eras: int[];
|
|
@@ -684,6 +720,8 @@ export type HijriCalendar = HijriCalendar$instance & __HijriCalendar$views;
|
|
|
684
720
|
|
|
685
721
|
|
|
686
722
|
export interface IdnMapping$instance {
|
|
723
|
+
readonly __tsonic_type_System_Globalization_IdnMapping: never;
|
|
724
|
+
|
|
687
725
|
AllowUnassigned: boolean;
|
|
688
726
|
UseStd3AsciiRules: boolean;
|
|
689
727
|
Equals(obj: unknown): boolean;
|
|
@@ -705,6 +743,10 @@ export const IdnMapping: {
|
|
|
705
743
|
export type IdnMapping = IdnMapping$instance;
|
|
706
744
|
|
|
707
745
|
export interface JapaneseCalendar$instance extends Calendar$instance {
|
|
746
|
+
readonly __tsonic_type_System_Globalization_JapaneseCalendar: never;
|
|
747
|
+
|
|
748
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
749
|
+
|
|
708
750
|
readonly AlgorithmType: CalendarAlgorithmType;
|
|
709
751
|
readonly Eras: int[];
|
|
710
752
|
readonly MaxSupportedDateTime: DateTime;
|
|
@@ -753,6 +795,10 @@ export type JapaneseCalendar = JapaneseCalendar$instance & __JapaneseCalendar$vi
|
|
|
753
795
|
|
|
754
796
|
|
|
755
797
|
export interface JapaneseLunisolarCalendar$instance extends EastAsianLunisolarCalendar$instance {
|
|
798
|
+
readonly __tsonic_type_System_Globalization_JapaneseLunisolarCalendar: never;
|
|
799
|
+
|
|
800
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
801
|
+
|
|
756
802
|
readonly DaysInYearBeforeMinSupportedYear: int;
|
|
757
803
|
readonly Eras: int[];
|
|
758
804
|
readonly MaxSupportedDateTime: DateTime;
|
|
@@ -776,6 +822,10 @@ export type JapaneseLunisolarCalendar = JapaneseLunisolarCalendar$instance & __J
|
|
|
776
822
|
|
|
777
823
|
|
|
778
824
|
export interface JulianCalendar$instance extends Calendar$instance {
|
|
825
|
+
readonly __tsonic_type_System_Globalization_JulianCalendar: never;
|
|
826
|
+
|
|
827
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
828
|
+
|
|
779
829
|
readonly AlgorithmType: CalendarAlgorithmType;
|
|
780
830
|
readonly Eras: int[];
|
|
781
831
|
readonly MaxSupportedDateTime: DateTime;
|
|
@@ -824,6 +874,10 @@ export type JulianCalendar = JulianCalendar$instance & __JulianCalendar$views;
|
|
|
824
874
|
|
|
825
875
|
|
|
826
876
|
export interface KoreanCalendar$instance extends Calendar$instance {
|
|
877
|
+
readonly __tsonic_type_System_Globalization_KoreanCalendar: never;
|
|
878
|
+
|
|
879
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
880
|
+
|
|
827
881
|
readonly AlgorithmType: CalendarAlgorithmType;
|
|
828
882
|
readonly Eras: int[];
|
|
829
883
|
readonly MaxSupportedDateTime: DateTime;
|
|
@@ -873,6 +927,10 @@ export type KoreanCalendar = KoreanCalendar$instance & __KoreanCalendar$views;
|
|
|
873
927
|
|
|
874
928
|
|
|
875
929
|
export interface KoreanLunisolarCalendar$instance extends EastAsianLunisolarCalendar$instance {
|
|
930
|
+
readonly __tsonic_type_System_Globalization_KoreanLunisolarCalendar: never;
|
|
931
|
+
|
|
932
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
933
|
+
|
|
876
934
|
readonly DaysInYearBeforeMinSupportedYear: int;
|
|
877
935
|
readonly Eras: int[];
|
|
878
936
|
readonly MaxSupportedDateTime: DateTime;
|
|
@@ -895,7 +953,12 @@ export interface __KoreanLunisolarCalendar$views {
|
|
|
895
953
|
export type KoreanLunisolarCalendar = KoreanLunisolarCalendar$instance & __KoreanLunisolarCalendar$views;
|
|
896
954
|
|
|
897
955
|
|
|
898
|
-
export interface NumberFormatInfo$instance {
|
|
956
|
+
export interface NumberFormatInfo$instance extends System_Internal.ICloneable$instance, System_Internal.IFormatProvider$instance {
|
|
957
|
+
readonly __tsonic_type_System_Globalization_NumberFormatInfo: never;
|
|
958
|
+
|
|
959
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
960
|
+
readonly __tsonic_iface_System_IFormatProvider: never;
|
|
961
|
+
|
|
899
962
|
CurrencyDecimalDigits: int;
|
|
900
963
|
CurrencyDecimalSeparator: string;
|
|
901
964
|
CurrencyGroupSeparator: string;
|
|
@@ -943,12 +1006,14 @@ export interface __NumberFormatInfo$views {
|
|
|
943
1006
|
As_IFormatProvider(): System_Internal.IFormatProvider$instance;
|
|
944
1007
|
}
|
|
945
1008
|
|
|
946
|
-
export interface NumberFormatInfo$instance extends System_Internal.ICloneable$instance, System_Internal.IFormatProvider$instance {}
|
|
947
|
-
|
|
948
1009
|
export type NumberFormatInfo = NumberFormatInfo$instance & __NumberFormatInfo$views;
|
|
949
1010
|
|
|
950
1011
|
|
|
951
1012
|
export interface PersianCalendar$instance extends Calendar$instance {
|
|
1013
|
+
readonly __tsonic_type_System_Globalization_PersianCalendar: never;
|
|
1014
|
+
|
|
1015
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
1016
|
+
|
|
952
1017
|
readonly AlgorithmType: CalendarAlgorithmType;
|
|
953
1018
|
readonly Eras: int[];
|
|
954
1019
|
readonly MaxSupportedDateTime: DateTime;
|
|
@@ -997,6 +1062,8 @@ export type PersianCalendar = PersianCalendar$instance & __PersianCalendar$views
|
|
|
997
1062
|
|
|
998
1063
|
|
|
999
1064
|
export interface RegionInfo$instance {
|
|
1065
|
+
readonly __tsonic_type_System_Globalization_RegionInfo: never;
|
|
1066
|
+
|
|
1000
1067
|
readonly CurrencyEnglishName: string;
|
|
1001
1068
|
readonly CurrencyNativeName: string;
|
|
1002
1069
|
readonly CurrencySymbol: string;
|
|
@@ -1026,6 +1093,8 @@ export const RegionInfo: {
|
|
|
1026
1093
|
export type RegionInfo = RegionInfo$instance;
|
|
1027
1094
|
|
|
1028
1095
|
export interface SortKey$instance {
|
|
1096
|
+
readonly __tsonic_type_System_Globalization_SortKey: never;
|
|
1097
|
+
|
|
1029
1098
|
readonly KeyData: byte[];
|
|
1030
1099
|
readonly OriginalString: string;
|
|
1031
1100
|
Equals(value: unknown): boolean;
|
|
@@ -1042,6 +1111,10 @@ export const SortKey: {
|
|
|
1042
1111
|
export type SortKey = SortKey$instance;
|
|
1043
1112
|
|
|
1044
1113
|
export interface SortVersion$instance {
|
|
1114
|
+
readonly __tsonic_type_System_Globalization_SortVersion: never;
|
|
1115
|
+
|
|
1116
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1117
|
+
|
|
1045
1118
|
readonly FullVersion: int;
|
|
1046
1119
|
readonly SortId: Guid;
|
|
1047
1120
|
Equals(obj: unknown): boolean;
|
|
@@ -1066,6 +1139,8 @@ export type SortVersion = SortVersion$instance & __SortVersion$views;
|
|
|
1066
1139
|
|
|
1067
1140
|
|
|
1068
1141
|
export interface StringInfo$instance {
|
|
1142
|
+
readonly __tsonic_type_System_Globalization_StringInfo: never;
|
|
1143
|
+
|
|
1069
1144
|
readonly LengthInTextElements: int;
|
|
1070
1145
|
String: string;
|
|
1071
1146
|
Equals(value: unknown): boolean;
|
|
@@ -1092,6 +1167,10 @@ export const StringInfo: {
|
|
|
1092
1167
|
export type StringInfo = StringInfo$instance;
|
|
1093
1168
|
|
|
1094
1169
|
export interface TaiwanCalendar$instance extends Calendar$instance {
|
|
1170
|
+
readonly __tsonic_type_System_Globalization_TaiwanCalendar: never;
|
|
1171
|
+
|
|
1172
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
1173
|
+
|
|
1095
1174
|
readonly AlgorithmType: CalendarAlgorithmType;
|
|
1096
1175
|
readonly Eras: int[];
|
|
1097
1176
|
readonly MaxSupportedDateTime: DateTime;
|
|
@@ -1140,6 +1219,10 @@ export type TaiwanCalendar = TaiwanCalendar$instance & __TaiwanCalendar$views;
|
|
|
1140
1219
|
|
|
1141
1220
|
|
|
1142
1221
|
export interface TaiwanLunisolarCalendar$instance extends EastAsianLunisolarCalendar$instance {
|
|
1222
|
+
readonly __tsonic_type_System_Globalization_TaiwanLunisolarCalendar: never;
|
|
1223
|
+
|
|
1224
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
1225
|
+
|
|
1143
1226
|
readonly DaysInYearBeforeMinSupportedYear: int;
|
|
1144
1227
|
readonly Eras: int[];
|
|
1145
1228
|
readonly MaxSupportedDateTime: DateTime;
|
|
@@ -1162,6 +1245,10 @@ export type TaiwanLunisolarCalendar = TaiwanLunisolarCalendar$instance & __Taiwa
|
|
|
1162
1245
|
|
|
1163
1246
|
|
|
1164
1247
|
export interface TextElementEnumerator$instance {
|
|
1248
|
+
readonly __tsonic_type_System_Globalization_TextElementEnumerator: never;
|
|
1249
|
+
|
|
1250
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1251
|
+
|
|
1165
1252
|
readonly Current: unknown;
|
|
1166
1253
|
readonly ElementIndex: int;
|
|
1167
1254
|
GetTextElement(): string;
|
|
@@ -1178,12 +1265,15 @@ export interface __TextElementEnumerator$views {
|
|
|
1178
1265
|
As_IEnumerator(): System_Collections_Internal.IEnumerator$instance;
|
|
1179
1266
|
}
|
|
1180
1267
|
|
|
1181
|
-
export interface TextElementEnumerator$instance extends System_Collections_Internal.IEnumerator$instance {}
|
|
1182
|
-
|
|
1183
1268
|
export type TextElementEnumerator = TextElementEnumerator$instance & __TextElementEnumerator$views;
|
|
1184
1269
|
|
|
1185
1270
|
|
|
1186
|
-
export interface TextInfo$instance {
|
|
1271
|
+
export interface TextInfo$instance extends System_Internal.ICloneable$instance, System_Runtime_Serialization_Internal.IDeserializationCallback$instance {
|
|
1272
|
+
readonly __tsonic_type_System_Globalization_TextInfo: never;
|
|
1273
|
+
|
|
1274
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
1275
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
1276
|
+
|
|
1187
1277
|
readonly ANSICodePage: int;
|
|
1188
1278
|
readonly CultureName: string;
|
|
1189
1279
|
readonly EBCDICCodePage: int;
|
|
@@ -1215,12 +1305,14 @@ export interface __TextInfo$views {
|
|
|
1215
1305
|
As_IDeserializationCallback(): System_Runtime_Serialization_Internal.IDeserializationCallback$instance;
|
|
1216
1306
|
}
|
|
1217
1307
|
|
|
1218
|
-
export interface TextInfo$instance extends System_Internal.ICloneable$instance, System_Runtime_Serialization_Internal.IDeserializationCallback$instance {}
|
|
1219
|
-
|
|
1220
1308
|
export type TextInfo = TextInfo$instance & __TextInfo$views;
|
|
1221
1309
|
|
|
1222
1310
|
|
|
1223
1311
|
export interface ThaiBuddhistCalendar$instance extends Calendar$instance {
|
|
1312
|
+
readonly __tsonic_type_System_Globalization_ThaiBuddhistCalendar: never;
|
|
1313
|
+
|
|
1314
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
1315
|
+
|
|
1224
1316
|
readonly AlgorithmType: CalendarAlgorithmType;
|
|
1225
1317
|
readonly Eras: int[];
|
|
1226
1318
|
readonly MaxSupportedDateTime: DateTime;
|
|
@@ -1270,6 +1362,10 @@ export type ThaiBuddhistCalendar = ThaiBuddhistCalendar$instance & __ThaiBuddhis
|
|
|
1270
1362
|
|
|
1271
1363
|
|
|
1272
1364
|
export interface UmAlQuraCalendar$instance extends Calendar$instance {
|
|
1365
|
+
readonly __tsonic_type_System_Globalization_UmAlQuraCalendar: never;
|
|
1366
|
+
|
|
1367
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
1368
|
+
|
|
1273
1369
|
readonly AlgorithmType: CalendarAlgorithmType;
|
|
1274
1370
|
readonly DaysInYearBeforeMinSupportedYear: int;
|
|
1275
1371
|
readonly Eras: int[];
|