@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.
Files changed (126) hide show
  1. package/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +6 -0
  2. package/Microsoft.VisualBasic/internal/index.d.ts +38 -0
  3. package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +58 -0
  4. package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +8 -0
  5. package/Microsoft.Win32/internal/index.d.ts +3 -3
  6. package/Microsoft.Win32.SafeHandles/internal/index.d.ts +34 -0
  7. package/System/internal/index.d.ts +413 -159
  8. package/System.Buffers/internal/index.d.ts +24 -6
  9. package/System.CodeDom.Compiler/internal/index.d.ts +4 -0
  10. package/System.Collections/internal/index.d.ts +35 -21
  11. package/System.Collections.Concurrent/internal/index.d.ts +17 -3
  12. package/System.Collections.Frozen/internal/index.d.ts +12 -0
  13. package/System.Collections.Generic/internal/index.d.ts +121 -33
  14. package/System.Collections.Immutable/internal/index.d.ts +44 -0
  15. package/System.Collections.ObjectModel/internal/index.d.ts +20 -6
  16. package/System.Collections.Specialized/internal/index.d.ts +30 -6
  17. package/System.ComponentModel/internal/index.d.ts +269 -21
  18. package/System.ComponentModel.DataAnnotations/internal/index.d.ts +73 -3
  19. package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
  20. package/System.ComponentModel.Design/internal/index.d.ts +47 -3
  21. package/System.ComponentModel.Design.Serialization/internal/index.d.ts +22 -0
  22. package/System.Data/internal/index.d.ts +110 -18
  23. package/System.Data.Common/internal/index.d.ts +64 -30
  24. package/System.Data.SqlTypes/internal/index.d.ts +58 -48
  25. package/System.Diagnostics/internal/index.d.ts +143 -9
  26. package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
  27. package/System.Diagnostics.Contracts/internal/index.d.ts +26 -0
  28. package/System.Diagnostics.Metrics/internal/index.d.ts +31 -3
  29. package/System.Diagnostics.SymbolStore/internal/index.d.ts +8 -0
  30. package/System.Diagnostics.Tracing/internal/index.d.ts +40 -6
  31. package/System.Drawing/internal/index.d.ts +24 -0
  32. package/System.Dynamic/internal/index.d.ts +37 -5
  33. package/System.Formats.Asn1/internal/index.d.ts +13 -3
  34. package/System.Formats.Tar/internal/index.d.ts +20 -6
  35. package/System.Globalization/internal/index.d.ts +64 -18
  36. package/System.IO/internal/index.d.ts +74 -18
  37. package/System.IO.Compression/internal/index.d.ts +25 -9
  38. package/System.IO.Enumeration/internal/index.d.ts +6 -0
  39. package/System.IO.IsolatedStorage/internal/index.d.ts +9 -3
  40. package/System.IO.MemoryMappedFiles/internal/index.d.ts +6 -0
  41. package/System.IO.Pipelines/internal/index.d.ts +18 -2
  42. package/System.IO.Pipes/internal/index.d.ts +16 -0
  43. package/System.Linq/internal/index.d.ts +17 -3
  44. package/System.Linq.Expressions/internal/index.d.ts +86 -18
  45. package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
  46. package/System.Net/internal/index.d.ts +109 -19
  47. package/System.Net.Cache/internal/index.d.ts +4 -0
  48. package/System.Net.Http/internal/index.d.ts +50 -0
  49. package/System.Net.Http.Headers/internal/index.d.ts +78 -60
  50. package/System.Net.Http.Json/internal/index.d.ts +2 -0
  51. package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
  52. package/System.Net.Mail/internal/index.d.ts +31 -9
  53. package/System.Net.Mime/internal/index.d.ts +4 -0
  54. package/System.Net.NetworkInformation/internal/index.d.ts +62 -0
  55. package/System.Net.Quic/internal/index.d.ts +22 -6
  56. package/System.Net.Security/internal/index.d.ts +27 -3
  57. package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
  58. package/System.Net.Sockets/internal/index.d.ts +38 -6
  59. package/System.Net.WebSockets/internal/index.d.ts +23 -3
  60. package/System.Numerics/internal/index.d.ts +24 -6
  61. package/System.Reflection/internal/index.d.ts +134 -30
  62. package/System.Reflection.Emit/internal/index.d.ts +45 -9
  63. package/System.Reflection.Metadata/internal/index.d.ts +321 -5
  64. package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +76 -0
  65. package/System.Reflection.PortableExecutable/internal/index.d.ts +37 -3
  66. package/System.Resources/internal/index.d.ts +16 -0
  67. package/System.Runtime/internal/index.d.ts +12 -6
  68. package/System.Runtime.CompilerServices/internal/index.d.ts +275 -33
  69. package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
  70. package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
  71. package/System.Runtime.InteropServices/internal/index.d.ts +174 -14
  72. package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +40 -0
  73. package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
  74. package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +55 -3
  75. package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +57 -12
  76. package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
  77. package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
  78. package/System.Runtime.Intrinsics/internal/index.d.ts +12 -12
  79. package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
  80. package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
  81. package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
  82. package/System.Runtime.Loader/internal/index.d.ts +7 -3
  83. package/System.Runtime.Remoting/internal/index.d.ts +2 -0
  84. package/System.Runtime.Serialization/internal/index.d.ts +75 -9
  85. package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
  86. package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +3 -3
  87. package/System.Runtime.Serialization.Json/internal/index.d.ts +4 -0
  88. package/System.Runtime.Versioning/internal/index.d.ts +26 -0
  89. package/System.Security/internal/index.d.ts +28 -6
  90. package/System.Security.AccessControl/internal/index.d.ts +94 -0
  91. package/System.Security.Authentication/internal/index.d.ts +4 -0
  92. package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +9 -3
  93. package/System.Security.Claims/internal/index.d.ts +8 -6
  94. package/System.Security.Cryptography/internal/index.d.ts +298 -42
  95. package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +69 -9
  96. package/System.Security.Permissions/internal/index.d.ts +6 -0
  97. package/System.Security.Policy/internal/index.d.ts +4 -0
  98. package/System.Security.Principal/internal/index.d.ts +19 -5
  99. package/System.Text/internal/index.d.ts +68 -8
  100. package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
  101. package/System.Text.Json/internal/index.d.ts +32 -6
  102. package/System.Text.Json.Nodes/internal/index.d.ts +10 -0
  103. package/System.Text.Json.Schema/internal/index.d.ts +4 -0
  104. package/System.Text.Json.Serialization/internal/index.d.ts +54 -0
  105. package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +23 -3
  106. package/System.Text.RegularExpressions/internal/index.d.ts +33 -3
  107. package/System.Text.Unicode/internal/index.d.ts +4 -0
  108. package/System.Threading/internal/index.d.ts +108 -24
  109. package/System.Threading.Channels/internal/index.d.ts +18 -0
  110. package/System.Threading.Tasks/internal/index.d.ts +34 -6
  111. package/System.Threading.Tasks.Dataflow/internal/index.d.ts +32 -0
  112. package/System.Threading.Tasks.Sources/internal/index.d.ts +2 -0
  113. package/System.Timers/internal/index.d.ts +7 -3
  114. package/System.Transactions/internal/index.d.ts +37 -15
  115. package/System.Web/internal/index.d.ts +2 -0
  116. package/System.Windows.Markup/internal/index.d.ts +2 -0
  117. package/System.Xml/internal/index.d.ts +106 -18
  118. package/System.Xml.Linq/internal/index.d.ts +41 -17
  119. package/System.Xml.Resolvers/internal/index.d.ts +2 -0
  120. package/System.Xml.Schema/internal/index.d.ts +148 -0
  121. package/System.Xml.Serialization/internal/index.d.ts +116 -0
  122. package/System.Xml.XPath/internal/index.d.ts +14 -6
  123. package/System.Xml.Xsl/internal/index.d.ts +16 -0
  124. package/System.Xml.Xsl.Runtime/internal/index.d.ts +88 -0
  125. package/__internal/extensions/index.d.ts +2143 -1955
  126. package/package.json +2 -2
@@ -180,6 +180,8 @@ export interface IXmlSchemaInfo$instance {
180
180
  export type IXmlSchemaInfo = IXmlSchemaInfo$instance;
181
181
 
182
182
  export interface ValidationEventArgs$instance extends EventArgs {
183
+ readonly __tsonic_type_System_Xml_Schema_ValidationEventArgs: never;
184
+
183
185
  readonly Exception: XmlSchemaException;
184
186
  readonly Message: string;
185
187
  readonly Severity: XmlSeverityType;
@@ -193,6 +195,8 @@ export const ValidationEventArgs: {
193
195
  export type ValidationEventArgs = ValidationEventArgs$instance;
194
196
 
195
197
  export interface XmlAtomicValue$instance extends XPathItem {
198
+ readonly __tsonic_type_System_Xml_Schema_XmlAtomicValue: never;
199
+
196
200
  readonly __tsonic_iface_System_ICloneable: never;
197
201
 
198
202
  readonly IsNode: boolean;
@@ -224,6 +228,8 @@ export type XmlAtomicValue = XmlAtomicValue$instance & __XmlAtomicValue$views;
224
228
 
225
229
 
226
230
  export interface XmlSchema$instance extends XmlSchemaObject {
231
+ readonly __tsonic_type_System_Xml_Schema_XmlSchema: never;
232
+
227
233
  AttributeFormDefault: XmlSchemaForm;
228
234
  readonly AttributeGroups: XmlSchemaObjectTable;
229
235
  readonly Attributes: XmlSchemaObjectTable;
@@ -269,6 +275,8 @@ export const XmlSchema: {
269
275
  export type XmlSchema = XmlSchema$instance;
270
276
 
271
277
  export interface XmlSchemaAll$instance extends XmlSchemaGroupBase {
278
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaAll: never;
279
+
272
280
  readonly Items: XmlSchemaObjectCollection;
273
281
  }
274
282
 
@@ -281,6 +289,8 @@ export const XmlSchemaAll: {
281
289
  export type XmlSchemaAll = XmlSchemaAll$instance;
282
290
 
283
291
  export interface XmlSchemaAnnotated$instance extends XmlSchemaObject {
292
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaAnnotated: never;
293
+
284
294
  get Annotation(): XmlSchemaAnnotation | undefined;
285
295
  set Annotation(value: XmlSchemaAnnotation | undefined);
286
296
  get Id(): string | undefined;
@@ -298,6 +308,8 @@ export const XmlSchemaAnnotated: {
298
308
  export type XmlSchemaAnnotated = XmlSchemaAnnotated$instance;
299
309
 
300
310
  export interface XmlSchemaAnnotation$instance extends XmlSchemaObject {
311
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaAnnotation: never;
312
+
301
313
  get Id(): string | undefined;
302
314
  set Id(value: string | undefined);
303
315
  readonly Items: XmlSchemaObjectCollection;
@@ -314,6 +326,8 @@ export const XmlSchemaAnnotation: {
314
326
  export type XmlSchemaAnnotation = XmlSchemaAnnotation$instance;
315
327
 
316
328
  export interface XmlSchemaAny$instance extends XmlSchemaParticle {
329
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaAny: never;
330
+
317
331
  get Namespace(): string | undefined;
318
332
  set Namespace(value: string | undefined);
319
333
  ProcessContents: XmlSchemaContentProcessing;
@@ -328,6 +342,8 @@ export const XmlSchemaAny: {
328
342
  export type XmlSchemaAny = XmlSchemaAny$instance;
329
343
 
330
344
  export interface XmlSchemaAnyAttribute$instance extends XmlSchemaAnnotated {
345
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaAnyAttribute: never;
346
+
331
347
  get Namespace(): string | undefined;
332
348
  set Namespace(value: string | undefined);
333
349
  ProcessContents: XmlSchemaContentProcessing;
@@ -342,6 +358,8 @@ export const XmlSchemaAnyAttribute: {
342
358
  export type XmlSchemaAnyAttribute = XmlSchemaAnyAttribute$instance;
343
359
 
344
360
  export interface XmlSchemaAppInfo$instance extends XmlSchemaObject {
361
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaAppInfo: never;
362
+
345
363
  get Markup(): (XmlNode | undefined)[] | undefined;
346
364
  set Markup(value: (XmlNode | undefined)[] | undefined);
347
365
  get Source(): string | undefined;
@@ -357,6 +375,8 @@ export const XmlSchemaAppInfo: {
357
375
  export type XmlSchemaAppInfo = XmlSchemaAppInfo$instance;
358
376
 
359
377
  export interface XmlSchemaAttribute$instance extends XmlSchemaAnnotated {
378
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaAttribute: never;
379
+
360
380
  readonly AttributeSchemaType: XmlSchemaSimpleType | undefined;
361
381
  readonly AttributeType: unknown | undefined;
362
382
  get DefaultValue(): string | undefined;
@@ -383,6 +403,8 @@ export const XmlSchemaAttribute: {
383
403
  export type XmlSchemaAttribute = XmlSchemaAttribute$instance;
384
404
 
385
405
  export interface XmlSchemaAttributeGroup$instance extends XmlSchemaAnnotated {
406
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaAttributeGroup: never;
407
+
386
408
  get AnyAttribute(): XmlSchemaAnyAttribute | undefined;
387
409
  set AnyAttribute(value: XmlSchemaAnyAttribute | undefined);
388
410
  readonly Attributes: XmlSchemaObjectCollection;
@@ -401,6 +423,8 @@ export const XmlSchemaAttributeGroup: {
401
423
  export type XmlSchemaAttributeGroup = XmlSchemaAttributeGroup$instance;
402
424
 
403
425
  export interface XmlSchemaAttributeGroupRef$instance extends XmlSchemaAnnotated {
426
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaAttributeGroupRef: never;
427
+
404
428
  RefName: XmlQualifiedName;
405
429
  }
406
430
 
@@ -413,6 +437,8 @@ export const XmlSchemaAttributeGroupRef: {
413
437
  export type XmlSchemaAttributeGroupRef = XmlSchemaAttributeGroupRef$instance;
414
438
 
415
439
  export interface XmlSchemaChoice$instance extends XmlSchemaGroupBase {
440
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaChoice: never;
441
+
416
442
  readonly Items: XmlSchemaObjectCollection;
417
443
  }
418
444
 
@@ -425,6 +451,8 @@ export const XmlSchemaChoice: {
425
451
  export type XmlSchemaChoice = XmlSchemaChoice$instance;
426
452
 
427
453
  export interface XmlSchemaCollection$instance {
454
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaCollection: never;
455
+
428
456
  readonly __tsonic_iface_System_Collections_ICollection: never;
429
457
  readonly __tsonic_iface_System_Collections_IEnumerable: never;
430
458
 
@@ -459,6 +487,8 @@ export type XmlSchemaCollection = XmlSchemaCollection$instance & __XmlSchemaColl
459
487
 
460
488
 
461
489
  export interface XmlSchemaCollectionEnumerator$instance {
490
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaCollectionEnumerator: never;
491
+
462
492
  readonly __tsonic_iface_System_Collections_IEnumerator: never;
463
493
 
464
494
  readonly Current: XmlSchema;
@@ -479,6 +509,8 @@ export type XmlSchemaCollectionEnumerator = XmlSchemaCollectionEnumerator$instan
479
509
 
480
510
 
481
511
  export interface XmlSchemaCompilationSettings$instance {
512
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaCompilationSettings: never;
513
+
482
514
  EnableUpaCheck: boolean;
483
515
  }
484
516
 
@@ -491,6 +523,8 @@ export const XmlSchemaCompilationSettings: {
491
523
  export type XmlSchemaCompilationSettings = XmlSchemaCompilationSettings$instance;
492
524
 
493
525
  export interface XmlSchemaComplexContent$instance extends XmlSchemaContentModel {
526
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaComplexContent: never;
527
+
494
528
  get Content(): XmlSchemaContent | undefined;
495
529
  set Content(value: XmlSchemaContent | undefined);
496
530
  IsMixed: boolean;
@@ -505,6 +539,8 @@ export const XmlSchemaComplexContent: {
505
539
  export type XmlSchemaComplexContent = XmlSchemaComplexContent$instance;
506
540
 
507
541
  export interface XmlSchemaComplexContentExtension$instance extends XmlSchemaContent {
542
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaComplexContentExtension: never;
543
+
508
544
  get AnyAttribute(): XmlSchemaAnyAttribute | undefined;
509
545
  set AnyAttribute(value: XmlSchemaAnyAttribute | undefined);
510
546
  readonly Attributes: XmlSchemaObjectCollection;
@@ -522,6 +558,8 @@ export const XmlSchemaComplexContentExtension: {
522
558
  export type XmlSchemaComplexContentExtension = XmlSchemaComplexContentExtension$instance;
523
559
 
524
560
  export interface XmlSchemaComplexContentRestriction$instance extends XmlSchemaContent {
561
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaComplexContentRestriction: never;
562
+
525
563
  get AnyAttribute(): XmlSchemaAnyAttribute | undefined;
526
564
  set AnyAttribute(value: XmlSchemaAnyAttribute | undefined);
527
565
  readonly Attributes: XmlSchemaObjectCollection;
@@ -539,6 +577,8 @@ export const XmlSchemaComplexContentRestriction: {
539
577
  export type XmlSchemaComplexContentRestriction = XmlSchemaComplexContentRestriction$instance;
540
578
 
541
579
  export interface XmlSchemaComplexType$instance extends XmlSchemaType {
580
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaComplexType: never;
581
+
542
582
  get AnyAttribute(): XmlSchemaAnyAttribute | undefined;
543
583
  set AnyAttribute(value: XmlSchemaAnyAttribute | undefined);
544
584
  readonly Attributes: XmlSchemaObjectCollection;
@@ -565,6 +605,8 @@ export const XmlSchemaComplexType: {
565
605
  export type XmlSchemaComplexType = XmlSchemaComplexType$instance;
566
606
 
567
607
  export interface XmlSchemaContent$instance extends XmlSchemaAnnotated {
608
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaContent: never;
609
+
568
610
  }
569
611
 
570
612
 
@@ -575,6 +617,8 @@ export const XmlSchemaContent: (abstract new() => XmlSchemaContent) & {
575
617
  export type XmlSchemaContent = XmlSchemaContent$instance;
576
618
 
577
619
  export interface XmlSchemaContentModel$instance extends XmlSchemaAnnotated {
620
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaContentModel: never;
621
+
578
622
  get Content(): XmlSchemaContent | undefined;
579
623
  set Content(value: XmlSchemaContent | undefined);
580
624
  }
@@ -587,6 +631,8 @@ export const XmlSchemaContentModel: (abstract new() => XmlSchemaContentModel) &
587
631
  export type XmlSchemaContentModel = XmlSchemaContentModel$instance;
588
632
 
589
633
  export interface XmlSchemaDatatype$instance {
634
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaDatatype: never;
635
+
590
636
  readonly TokenizedType: XmlTokenizedType;
591
637
  readonly TypeCode: XmlTypeCode;
592
638
  readonly ValueType: Type;
@@ -605,6 +651,8 @@ export const XmlSchemaDatatype: {
605
651
  export type XmlSchemaDatatype = XmlSchemaDatatype$instance;
606
652
 
607
653
  export interface XmlSchemaDocumentation$instance extends XmlSchemaObject {
654
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaDocumentation: never;
655
+
608
656
  get Language(): string | undefined;
609
657
  set Language(value: string | undefined);
610
658
  get Markup(): (XmlNode | undefined)[] | undefined;
@@ -622,6 +670,8 @@ export const XmlSchemaDocumentation: {
622
670
  export type XmlSchemaDocumentation = XmlSchemaDocumentation$instance;
623
671
 
624
672
  export interface XmlSchemaElement$instance extends XmlSchemaParticle {
673
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaElement: never;
674
+
625
675
  Block: XmlSchemaDerivationMethod;
626
676
  readonly BlockResolved: XmlSchemaDerivationMethod;
627
677
  readonly Constraints: XmlSchemaObjectCollection;
@@ -655,6 +705,8 @@ export const XmlSchemaElement: {
655
705
  export type XmlSchemaElement = XmlSchemaElement$instance;
656
706
 
657
707
  export interface XmlSchemaEnumerationFacet$instance extends XmlSchemaFacet {
708
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaEnumerationFacet: never;
709
+
658
710
  }
659
711
 
660
712
 
@@ -666,6 +718,8 @@ export const XmlSchemaEnumerationFacet: {
666
718
  export type XmlSchemaEnumerationFacet = XmlSchemaEnumerationFacet$instance;
667
719
 
668
720
  export interface XmlSchemaException$instance extends SystemException {
721
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaException: never;
722
+
669
723
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
670
724
 
671
725
  readonly LineNumber: int;
@@ -693,6 +747,8 @@ export type XmlSchemaException = XmlSchemaException$instance & __XmlSchemaExcept
693
747
 
694
748
 
695
749
  export interface XmlSchemaExternal$instance extends XmlSchemaObject {
750
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaExternal: never;
751
+
696
752
  get Id(): string | undefined;
697
753
  set Id(value: string | undefined);
698
754
  get Schema(): XmlSchema | undefined;
@@ -711,6 +767,8 @@ export const XmlSchemaExternal: (abstract new() => XmlSchemaExternal) & {
711
767
  export type XmlSchemaExternal = XmlSchemaExternal$instance;
712
768
 
713
769
  export interface XmlSchemaFacet$instance extends XmlSchemaAnnotated {
770
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaFacet: never;
771
+
714
772
  IsFixed: boolean;
715
773
  get Value(): string | undefined;
716
774
  set Value(value: string | undefined);
@@ -724,6 +782,8 @@ export const XmlSchemaFacet: (abstract new() => XmlSchemaFacet) & {
724
782
  export type XmlSchemaFacet = XmlSchemaFacet$instance;
725
783
 
726
784
  export interface XmlSchemaFractionDigitsFacet$instance extends XmlSchemaNumericFacet {
785
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaFractionDigitsFacet: never;
786
+
727
787
  }
728
788
 
729
789
 
@@ -735,6 +795,8 @@ export const XmlSchemaFractionDigitsFacet: {
735
795
  export type XmlSchemaFractionDigitsFacet = XmlSchemaFractionDigitsFacet$instance;
736
796
 
737
797
  export interface XmlSchemaGroup$instance extends XmlSchemaAnnotated {
798
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaGroup: never;
799
+
738
800
  get Name(): string | undefined;
739
801
  set Name(value: string | undefined);
740
802
  get Particle(): XmlSchemaGroupBase | undefined;
@@ -751,6 +813,8 @@ export const XmlSchemaGroup: {
751
813
  export type XmlSchemaGroup = XmlSchemaGroup$instance;
752
814
 
753
815
  export interface XmlSchemaGroupBase$instance extends XmlSchemaParticle {
816
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaGroupBase: never;
817
+
754
818
  readonly Items: XmlSchemaObjectCollection;
755
819
  }
756
820
 
@@ -762,6 +826,8 @@ export const XmlSchemaGroupBase: {
762
826
  export type XmlSchemaGroupBase = XmlSchemaGroupBase$instance;
763
827
 
764
828
  export interface XmlSchemaGroupRef$instance extends XmlSchemaParticle {
829
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaGroupRef: never;
830
+
765
831
  readonly Particle: XmlSchemaGroupBase | undefined;
766
832
  RefName: XmlQualifiedName;
767
833
  }
@@ -775,6 +841,8 @@ export const XmlSchemaGroupRef: {
775
841
  export type XmlSchemaGroupRef = XmlSchemaGroupRef$instance;
776
842
 
777
843
  export interface XmlSchemaIdentityConstraint$instance extends XmlSchemaAnnotated {
844
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaIdentityConstraint: never;
845
+
778
846
  readonly Fields: XmlSchemaObjectCollection;
779
847
  get Name(): string | undefined;
780
848
  set Name(value: string | undefined);
@@ -792,6 +860,8 @@ export const XmlSchemaIdentityConstraint: {
792
860
  export type XmlSchemaIdentityConstraint = XmlSchemaIdentityConstraint$instance;
793
861
 
794
862
  export interface XmlSchemaImport$instance extends XmlSchemaExternal {
863
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaImport: never;
864
+
795
865
  get Annotation(): XmlSchemaAnnotation | undefined;
796
866
  set Annotation(value: XmlSchemaAnnotation | undefined);
797
867
  get Namespace(): string | undefined;
@@ -807,6 +877,8 @@ export const XmlSchemaImport: {
807
877
  export type XmlSchemaImport = XmlSchemaImport$instance;
808
878
 
809
879
  export interface XmlSchemaInclude$instance extends XmlSchemaExternal {
880
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaInclude: never;
881
+
810
882
  get Annotation(): XmlSchemaAnnotation | undefined;
811
883
  set Annotation(value: XmlSchemaAnnotation | undefined);
812
884
  }
@@ -820,6 +892,8 @@ export const XmlSchemaInclude: {
820
892
  export type XmlSchemaInclude = XmlSchemaInclude$instance;
821
893
 
822
894
  export interface XmlSchemaInference$instance {
895
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaInference: never;
896
+
823
897
  Occurrence: XmlSchemaInference_InferenceOption;
824
898
  TypeInference: XmlSchemaInference_InferenceOption;
825
899
  InferSchema(instanceDocument: XmlReader): XmlSchemaSet;
@@ -835,6 +909,8 @@ export const XmlSchemaInference: {
835
909
  export type XmlSchemaInference = XmlSchemaInference$instance;
836
910
 
837
911
  export interface XmlSchemaInferenceException$instance extends XmlSchemaException$instance {
912
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaInferenceException: never;
913
+
838
914
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
839
915
 
840
916
  GetObjectData(info: SerializationInfo, context: StreamingContext): void;
@@ -857,6 +933,8 @@ export type XmlSchemaInferenceException = XmlSchemaInferenceException$instance &
857
933
 
858
934
 
859
935
  export interface XmlSchemaInfo$instance {
936
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaInfo: never;
937
+
860
938
  readonly __tsonic_iface_System_Xml_Schema_IXmlSchemaInfo: never;
861
939
 
862
940
  ContentType: XmlSchemaContentType;
@@ -887,6 +965,8 @@ export type XmlSchemaInfo = XmlSchemaInfo$instance & __XmlSchemaInfo$views;
887
965
 
888
966
 
889
967
  export interface XmlSchemaKey$instance extends XmlSchemaIdentityConstraint {
968
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaKey: never;
969
+
890
970
  }
891
971
 
892
972
 
@@ -898,6 +978,8 @@ export const XmlSchemaKey: {
898
978
  export type XmlSchemaKey = XmlSchemaKey$instance;
899
979
 
900
980
  export interface XmlSchemaKeyref$instance extends XmlSchemaIdentityConstraint {
981
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaKeyref: never;
982
+
901
983
  Refer: XmlQualifiedName;
902
984
  }
903
985
 
@@ -910,6 +992,8 @@ export const XmlSchemaKeyref: {
910
992
  export type XmlSchemaKeyref = XmlSchemaKeyref$instance;
911
993
 
912
994
  export interface XmlSchemaLengthFacet$instance extends XmlSchemaNumericFacet {
995
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaLengthFacet: never;
996
+
913
997
  }
914
998
 
915
999
 
@@ -921,6 +1005,8 @@ export const XmlSchemaLengthFacet: {
921
1005
  export type XmlSchemaLengthFacet = XmlSchemaLengthFacet$instance;
922
1006
 
923
1007
  export interface XmlSchemaMaxExclusiveFacet$instance extends XmlSchemaFacet {
1008
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaMaxExclusiveFacet: never;
1009
+
924
1010
  }
925
1011
 
926
1012
 
@@ -932,6 +1018,8 @@ export const XmlSchemaMaxExclusiveFacet: {
932
1018
  export type XmlSchemaMaxExclusiveFacet = XmlSchemaMaxExclusiveFacet$instance;
933
1019
 
934
1020
  export interface XmlSchemaMaxInclusiveFacet$instance extends XmlSchemaFacet {
1021
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaMaxInclusiveFacet: never;
1022
+
935
1023
  }
936
1024
 
937
1025
 
@@ -943,6 +1031,8 @@ export const XmlSchemaMaxInclusiveFacet: {
943
1031
  export type XmlSchemaMaxInclusiveFacet = XmlSchemaMaxInclusiveFacet$instance;
944
1032
 
945
1033
  export interface XmlSchemaMaxLengthFacet$instance extends XmlSchemaNumericFacet {
1034
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaMaxLengthFacet: never;
1035
+
946
1036
  }
947
1037
 
948
1038
 
@@ -954,6 +1044,8 @@ export const XmlSchemaMaxLengthFacet: {
954
1044
  export type XmlSchemaMaxLengthFacet = XmlSchemaMaxLengthFacet$instance;
955
1045
 
956
1046
  export interface XmlSchemaMinExclusiveFacet$instance extends XmlSchemaFacet {
1047
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaMinExclusiveFacet: never;
1048
+
957
1049
  }
958
1050
 
959
1051
 
@@ -965,6 +1057,8 @@ export const XmlSchemaMinExclusiveFacet: {
965
1057
  export type XmlSchemaMinExclusiveFacet = XmlSchemaMinExclusiveFacet$instance;
966
1058
 
967
1059
  export interface XmlSchemaMinInclusiveFacet$instance extends XmlSchemaFacet {
1060
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaMinInclusiveFacet: never;
1061
+
968
1062
  }
969
1063
 
970
1064
 
@@ -976,6 +1070,8 @@ export const XmlSchemaMinInclusiveFacet: {
976
1070
  export type XmlSchemaMinInclusiveFacet = XmlSchemaMinInclusiveFacet$instance;
977
1071
 
978
1072
  export interface XmlSchemaMinLengthFacet$instance extends XmlSchemaNumericFacet {
1073
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaMinLengthFacet: never;
1074
+
979
1075
  }
980
1076
 
981
1077
 
@@ -987,6 +1083,8 @@ export const XmlSchemaMinLengthFacet: {
987
1083
  export type XmlSchemaMinLengthFacet = XmlSchemaMinLengthFacet$instance;
988
1084
 
989
1085
  export interface XmlSchemaNotation$instance extends XmlSchemaAnnotated {
1086
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaNotation: never;
1087
+
990
1088
  get Name(): string | undefined;
991
1089
  set Name(value: string | undefined);
992
1090
  get Public(): string | undefined;
@@ -1004,6 +1102,8 @@ export const XmlSchemaNotation: {
1004
1102
  export type XmlSchemaNotation = XmlSchemaNotation$instance;
1005
1103
 
1006
1104
  export interface XmlSchemaNumericFacet$instance extends XmlSchemaFacet {
1105
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaNumericFacet: never;
1106
+
1007
1107
  }
1008
1108
 
1009
1109
 
@@ -1014,6 +1114,8 @@ export const XmlSchemaNumericFacet: (abstract new() => XmlSchemaNumericFacet) &
1014
1114
  export type XmlSchemaNumericFacet = XmlSchemaNumericFacet$instance;
1015
1115
 
1016
1116
  export interface XmlSchemaObject$instance {
1117
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaObject: never;
1118
+
1017
1119
  LineNumber: int;
1018
1120
  LinePosition: int;
1019
1121
  Namespaces: XmlSerializerNamespaces;
@@ -1031,6 +1133,8 @@ export const XmlSchemaObject: (abstract new() => XmlSchemaObject) & {
1031
1133
  export type XmlSchemaObject = XmlSchemaObject$instance;
1032
1134
 
1033
1135
  export interface XmlSchemaObjectCollection$instance extends CollectionBase {
1136
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaObjectCollection: never;
1137
+
1034
1138
  readonly __tsonic_iface_System_Collections_ICollection: never;
1035
1139
  readonly __tsonic_iface_System_Collections_IEnumerable: never;
1036
1140
  readonly __tsonic_iface_System_Collections_IList: never;
@@ -1068,6 +1172,8 @@ export type XmlSchemaObjectCollection = XmlSchemaObjectCollection$instance & __X
1068
1172
 
1069
1173
 
1070
1174
  export interface XmlSchemaObjectEnumerator$instance {
1175
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaObjectEnumerator: never;
1176
+
1071
1177
  readonly __tsonic_iface_System_Collections_IEnumerator: never;
1072
1178
 
1073
1179
  readonly Current: XmlSchemaObject;
@@ -1088,6 +1194,8 @@ export type XmlSchemaObjectEnumerator = XmlSchemaObjectEnumerator$instance & __X
1088
1194
 
1089
1195
 
1090
1196
  export interface XmlSchemaObjectTable$instance {
1197
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaObjectTable: never;
1198
+
1091
1199
  readonly Count: int;
1092
1200
  readonly Item: XmlSchemaObject | undefined;
1093
1201
  readonly Names: ICollection;
@@ -1104,6 +1212,8 @@ export const XmlSchemaObjectTable: {
1104
1212
  export type XmlSchemaObjectTable = XmlSchemaObjectTable$instance;
1105
1213
 
1106
1214
  export interface XmlSchemaParticle$instance extends XmlSchemaAnnotated {
1215
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaParticle: never;
1216
+
1107
1217
  MaxOccurs: decimal;
1108
1218
  get MaxOccursString(): string | undefined;
1109
1219
  set MaxOccursString(value: string | undefined);
@@ -1120,6 +1230,8 @@ export const XmlSchemaParticle: (abstract new() => XmlSchemaParticle) & {
1120
1230
  export type XmlSchemaParticle = XmlSchemaParticle$instance;
1121
1231
 
1122
1232
  export interface XmlSchemaPatternFacet$instance extends XmlSchemaFacet {
1233
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaPatternFacet: never;
1234
+
1123
1235
  }
1124
1236
 
1125
1237
 
@@ -1131,6 +1243,8 @@ export const XmlSchemaPatternFacet: {
1131
1243
  export type XmlSchemaPatternFacet = XmlSchemaPatternFacet$instance;
1132
1244
 
1133
1245
  export interface XmlSchemaRedefine$instance extends XmlSchemaExternal {
1246
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaRedefine: never;
1247
+
1134
1248
  readonly AttributeGroups: XmlSchemaObjectTable;
1135
1249
  readonly Groups: XmlSchemaObjectTable;
1136
1250
  readonly Items: XmlSchemaObjectCollection;
@@ -1146,6 +1260,8 @@ export const XmlSchemaRedefine: {
1146
1260
  export type XmlSchemaRedefine = XmlSchemaRedefine$instance;
1147
1261
 
1148
1262
  export interface XmlSchemaSequence$instance extends XmlSchemaGroupBase {
1263
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaSequence: never;
1264
+
1149
1265
  readonly Items: XmlSchemaObjectCollection;
1150
1266
  }
1151
1267
 
@@ -1158,6 +1274,8 @@ export const XmlSchemaSequence: {
1158
1274
  export type XmlSchemaSequence = XmlSchemaSequence$instance;
1159
1275
 
1160
1276
  export interface XmlSchemaSet$instance {
1277
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaSet: never;
1278
+
1161
1279
  CompilationSettings: XmlSchemaCompilationSettings;
1162
1280
  readonly Count: int;
1163
1281
  readonly GlobalAttributes: XmlSchemaObjectTable;
@@ -1191,6 +1309,8 @@ export const XmlSchemaSet: {
1191
1309
  export type XmlSchemaSet = XmlSchemaSet$instance;
1192
1310
 
1193
1311
  export interface XmlSchemaSimpleContent$instance extends XmlSchemaContentModel {
1312
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleContent: never;
1313
+
1194
1314
  get Content(): XmlSchemaContent | undefined;
1195
1315
  set Content(value: XmlSchemaContent | undefined);
1196
1316
  }
@@ -1204,6 +1324,8 @@ export const XmlSchemaSimpleContent: {
1204
1324
  export type XmlSchemaSimpleContent = XmlSchemaSimpleContent$instance;
1205
1325
 
1206
1326
  export interface XmlSchemaSimpleContentExtension$instance extends XmlSchemaContent {
1327
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleContentExtension: never;
1328
+
1207
1329
  get AnyAttribute(): XmlSchemaAnyAttribute | undefined;
1208
1330
  set AnyAttribute(value: XmlSchemaAnyAttribute | undefined);
1209
1331
  readonly Attributes: XmlSchemaObjectCollection;
@@ -1219,6 +1341,8 @@ export const XmlSchemaSimpleContentExtension: {
1219
1341
  export type XmlSchemaSimpleContentExtension = XmlSchemaSimpleContentExtension$instance;
1220
1342
 
1221
1343
  export interface XmlSchemaSimpleContentRestriction$instance extends XmlSchemaContent {
1344
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleContentRestriction: never;
1345
+
1222
1346
  get AnyAttribute(): XmlSchemaAnyAttribute | undefined;
1223
1347
  set AnyAttribute(value: XmlSchemaAnyAttribute | undefined);
1224
1348
  readonly Attributes: XmlSchemaObjectCollection;
@@ -1237,6 +1361,8 @@ export const XmlSchemaSimpleContentRestriction: {
1237
1361
  export type XmlSchemaSimpleContentRestriction = XmlSchemaSimpleContentRestriction$instance;
1238
1362
 
1239
1363
  export interface XmlSchemaSimpleType$instance extends XmlSchemaType {
1364
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleType: never;
1365
+
1240
1366
  get Content(): XmlSchemaSimpleTypeContent | undefined;
1241
1367
  set Content(value: XmlSchemaSimpleTypeContent | undefined);
1242
1368
  }
@@ -1250,6 +1376,8 @@ export const XmlSchemaSimpleType: {
1250
1376
  export type XmlSchemaSimpleType = XmlSchemaSimpleType$instance;
1251
1377
 
1252
1378
  export interface XmlSchemaSimpleTypeContent$instance extends XmlSchemaAnnotated {
1379
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleTypeContent: never;
1380
+
1253
1381
  }
1254
1382
 
1255
1383
 
@@ -1260,6 +1388,8 @@ export const XmlSchemaSimpleTypeContent: (abstract new() => XmlSchemaSimpleTypeC
1260
1388
  export type XmlSchemaSimpleTypeContent = XmlSchemaSimpleTypeContent$instance;
1261
1389
 
1262
1390
  export interface XmlSchemaSimpleTypeList$instance extends XmlSchemaSimpleTypeContent {
1391
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleTypeList: never;
1392
+
1263
1393
  get BaseItemType(): XmlSchemaSimpleType | undefined;
1264
1394
  set BaseItemType(value: XmlSchemaSimpleType | undefined);
1265
1395
  get ItemType(): XmlSchemaSimpleType | undefined;
@@ -1276,6 +1406,8 @@ export const XmlSchemaSimpleTypeList: {
1276
1406
  export type XmlSchemaSimpleTypeList = XmlSchemaSimpleTypeList$instance;
1277
1407
 
1278
1408
  export interface XmlSchemaSimpleTypeRestriction$instance extends XmlSchemaSimpleTypeContent {
1409
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleTypeRestriction: never;
1410
+
1279
1411
  get BaseType(): XmlSchemaSimpleType | undefined;
1280
1412
  set BaseType(value: XmlSchemaSimpleType | undefined);
1281
1413
  BaseTypeName: XmlQualifiedName;
@@ -1291,6 +1423,8 @@ export const XmlSchemaSimpleTypeRestriction: {
1291
1423
  export type XmlSchemaSimpleTypeRestriction = XmlSchemaSimpleTypeRestriction$instance;
1292
1424
 
1293
1425
  export interface XmlSchemaSimpleTypeUnion$instance extends XmlSchemaSimpleTypeContent {
1426
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaSimpleTypeUnion: never;
1427
+
1294
1428
  readonly BaseMemberTypes: XmlSchemaSimpleType[] | undefined;
1295
1429
  readonly BaseTypes: XmlSchemaObjectCollection;
1296
1430
  get MemberTypes(): XmlQualifiedName[] | undefined;
@@ -1306,6 +1440,8 @@ export const XmlSchemaSimpleTypeUnion: {
1306
1440
  export type XmlSchemaSimpleTypeUnion = XmlSchemaSimpleTypeUnion$instance;
1307
1441
 
1308
1442
  export interface XmlSchemaTotalDigitsFacet$instance extends XmlSchemaNumericFacet {
1443
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaTotalDigitsFacet: never;
1444
+
1309
1445
  }
1310
1446
 
1311
1447
 
@@ -1317,6 +1453,8 @@ export const XmlSchemaTotalDigitsFacet: {
1317
1453
  export type XmlSchemaTotalDigitsFacet = XmlSchemaTotalDigitsFacet$instance;
1318
1454
 
1319
1455
  export interface XmlSchemaType$instance extends XmlSchemaAnnotated {
1456
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaType: never;
1457
+
1320
1458
  readonly BaseSchemaType: unknown | undefined;
1321
1459
  readonly BaseXmlSchemaType: XmlSchemaType | undefined;
1322
1460
  readonly Datatype: XmlSchemaDatatype | undefined;
@@ -1344,6 +1482,8 @@ export const XmlSchemaType: {
1344
1482
  export type XmlSchemaType = XmlSchemaType$instance;
1345
1483
 
1346
1484
  export interface XmlSchemaUnique$instance extends XmlSchemaIdentityConstraint {
1485
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaUnique: never;
1486
+
1347
1487
  }
1348
1488
 
1349
1489
 
@@ -1355,6 +1495,8 @@ export const XmlSchemaUnique: {
1355
1495
  export type XmlSchemaUnique = XmlSchemaUnique$instance;
1356
1496
 
1357
1497
  export interface XmlSchemaValidationException$instance extends XmlSchemaException$instance {
1498
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaValidationException: never;
1499
+
1358
1500
  readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
1359
1501
 
1360
1502
  readonly SourceObject: unknown | undefined;
@@ -1378,6 +1520,8 @@ export type XmlSchemaValidationException = XmlSchemaValidationException$instance
1378
1520
 
1379
1521
 
1380
1522
  export interface XmlSchemaValidator$instance {
1523
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaValidator: never;
1524
+
1381
1525
  LineInfoProvider: IXmlLineInfo;
1382
1526
  get SourceUri(): Uri | undefined;
1383
1527
  set SourceUri(value: Uri | undefined);
@@ -1413,6 +1557,8 @@ export const XmlSchemaValidator: {
1413
1557
  export type XmlSchemaValidator = XmlSchemaValidator$instance;
1414
1558
 
1415
1559
  export interface XmlSchemaWhiteSpaceFacet$instance extends XmlSchemaFacet {
1560
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaWhiteSpaceFacet: never;
1561
+
1416
1562
  }
1417
1563
 
1418
1564
 
@@ -1424,6 +1570,8 @@ export const XmlSchemaWhiteSpaceFacet: {
1424
1570
  export type XmlSchemaWhiteSpaceFacet = XmlSchemaWhiteSpaceFacet$instance;
1425
1571
 
1426
1572
  export interface XmlSchemaXPath$instance extends XmlSchemaAnnotated {
1573
+ readonly __tsonic_type_System_Xml_Schema_XmlSchemaXPath: never;
1574
+
1427
1575
  get XPath(): string | undefined;
1428
1576
  set XPath(value: string | undefined);
1429
1577
  }