@tsonic/dotnet 0.7.3 → 0.7.4

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 (76) hide show
  1. package/Microsoft.VisualBasic/internal/index.d.ts +8 -8
  2. package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +2 -2
  3. package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +7 -7
  4. package/System/internal/index.d.ts +79 -72
  5. package/System.Buffers/internal/index.d.ts +1 -1
  6. package/System.Buffers.d.ts +11 -2
  7. package/System.CodeDom.Compiler/internal/index.d.ts +2 -2
  8. package/System.Collections.Concurrent/internal/index.d.ts +1 -0
  9. package/System.Collections.Concurrent.d.ts +11 -2
  10. package/System.Collections.Generic/internal/index.d.ts +10 -0
  11. package/System.Collections.Immutable/internal/index.d.ts +16 -11
  12. package/System.Collections.ObjectModel.d.ts +11 -2
  13. package/System.Collections.Specialized/internal/index.d.ts +3 -2
  14. package/System.ComponentModel/internal/index.d.ts +11 -7
  15. package/System.ComponentModel.Design/internal/index.d.ts +3 -0
  16. package/System.ComponentModel.Design.Serialization/internal/index.d.ts +3 -1
  17. package/System.Data/internal/index.d.ts +12 -7
  18. package/System.Data.SqlTypes/internal/index.d.ts +26 -26
  19. package/System.Data.d.ts +17 -4
  20. package/System.Diagnostics/internal/index.d.ts +19 -19
  21. package/System.Diagnostics.Metrics/internal/index.d.ts +4 -4
  22. package/System.Diagnostics.Metrics.d.ts +11 -2
  23. package/System.Diagnostics.SymbolStore/internal/index.d.ts +1 -1
  24. package/System.Drawing/internal/index.d.ts +7 -7
  25. package/System.Dynamic/internal/index.d.ts +2 -2
  26. package/System.Formats.Asn1/internal/index.d.ts +1 -1
  27. package/System.Globalization/internal/index.d.ts +1 -1
  28. package/System.IO/internal/index.d.ts +9 -9
  29. package/System.Linq/internal/index.d.ts +5 -0
  30. package/System.Linq.Expressions/internal/index.d.ts +47 -47
  31. package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -2
  32. package/System.Linq.Expressions.d.ts +11 -2
  33. package/System.Linq.d.ts +35 -10
  34. package/System.Net/internal/index.d.ts +6 -2
  35. package/System.Net.Http/internal/index.d.ts +1 -1
  36. package/System.Net.Security/internal/index.d.ts +1 -1
  37. package/System.Net.ServerSentEvents.d.ts +11 -2
  38. package/System.Net.Sockets/internal/index.d.ts +2 -2
  39. package/System.Numerics/internal/index.d.ts +61 -21
  40. package/System.Numerics.d.ts +11 -2
  41. package/System.Reflection/internal/index.d.ts +3 -3
  42. package/System.Reflection.Emit/internal/index.d.ts +7 -7
  43. package/System.Reflection.Metadata/internal/index.d.ts +46 -43
  44. package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +2 -2
  45. package/System.Resources/internal/index.d.ts +2 -0
  46. package/System.Runtime.CompilerServices/internal/index.d.ts +2 -1
  47. package/System.Runtime.CompilerServices.d.ts +41 -12
  48. package/System.Runtime.InteropServices/internal/index.d.ts +19 -18
  49. package/System.Runtime.InteropServices.JavaScript.d.ts +17 -2
  50. package/System.Runtime.InteropServices.Swift.d.ts +11 -2
  51. package/System.Runtime.InteropServices.d.ts +11 -2
  52. package/System.Runtime.Intrinsics/internal/index.d.ts +4 -4
  53. package/System.Runtime.Intrinsics.d.ts +29 -8
  54. package/System.Runtime.Versioning/internal/index.d.ts +1 -1
  55. package/System.Security.AccessControl.d.ts +23 -6
  56. package/System.Security.Cryptography/internal/index.d.ts +15 -15
  57. package/System.Security.Principal/internal/index.d.ts +1 -1
  58. package/System.Text/internal/index.d.ts +10 -9
  59. package/System.Text.Encodings.Web/internal/index.d.ts +7 -7
  60. package/System.Text.Json/internal/index.d.ts +1 -1
  61. package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +1 -1
  62. package/System.Text.Json.Serialization.Metadata.d.ts +11 -2
  63. package/System.Text.Json.Serialization.d.ts +23 -6
  64. package/System.Threading/internal/index.d.ts +5 -5
  65. package/System.Threading.Channels.d.ts +13 -2
  66. package/System.Threading.Tasks/internal/index.d.ts +12 -12
  67. package/System.Threading.Tasks.Dataflow/internal/index.d.ts +1 -1
  68. package/System.Threading.Tasks.Dataflow.d.ts +21 -2
  69. package/System.Threading.Tasks.Sources.d.ts +11 -2
  70. package/System.Threading.Tasks.d.ts +29 -8
  71. package/System.Transactions/internal/index.d.ts +1 -1
  72. package/System.Xml.Linq/internal/index.d.ts +10 -10
  73. package/System.d.ts +75 -14
  74. package/families.json +359 -0
  75. package/package.json +1 -1
  76. package/tsconfig.json +2 -1
@@ -75,7 +75,7 @@ export interface IndentedTextWriter$instance extends TextWriter {
75
75
  write(value: unknown): void;
76
76
  write(format: string, arg0: unknown): void;
77
77
  write(format: string, arg0: unknown, arg1: unknown): void;
78
- write(format: string, arg: unknown[]): void;
78
+ write(format: string, ...arg: unknown[]): void;
79
79
  write(format: string, arg: ReadOnlySpan_1<unknown>): void;
80
80
  write(buffer: ReadOnlySpan_1<CLROf<char>>): void;
81
81
  write(value: uint): void;
@@ -104,7 +104,7 @@ export interface IndentedTextWriter$instance extends TextWriter {
104
104
  writeLine(value: unknown): void;
105
105
  writeLine(format: string, arg0: unknown): void;
106
106
  writeLine(format: string, arg0: unknown, arg1: unknown): void;
107
- writeLine(format: string, arg: unknown[]): void;
107
+ writeLine(format: string, ...arg: unknown[]): void;
108
108
  writeLine(format: string, arg: ReadOnlySpan_1<unknown>): void;
109
109
  writeLine(value: uint): void;
110
110
  writeLine(buffer: ReadOnlySpan_1<CLROf<char>>): void;
@@ -59,6 +59,7 @@ export interface IProducerConsumerCollection_1$instance<T> extends IEnumerable_1
59
59
  toArray(): T[];
60
60
  tryAdd(item: T): boolean;
61
61
  tryTake(item: { value: ref<T> }): boolean;
62
+ getEnumerator2(): IEnumerator;
62
63
  }
63
64
 
64
65
 
@@ -17,8 +17,17 @@ export { ConcurrentBag_1 as ConcurrentBag } from './System.Collections.Concurren
17
17
  export { ConcurrentDictionary_2 as ConcurrentDictionary } from './System.Collections.Concurrent/internal/index.js';
18
18
  export { ConcurrentStack_1 as ConcurrentStack } from './System.Collections.Concurrent/internal/index.js';
19
19
  export { OrderablePartitioner_1 as OrderablePartitioner } from './System.Collections.Concurrent/internal/index.js';
20
- export { Partitioner_1 as Partitioner } from './System.Collections.Concurrent/internal/index.js';
21
20
  export { EnumerablePartitionerOptions as EnumerablePartitionerOptions } from './System.Collections.Concurrent/internal/index.js';
22
- export { Partitioner$instance as Partitioner_0 } from './System.Collections.Concurrent/internal/index.js';
23
21
  export { ConcurrentQueue_1 as ConcurrentQueue } from './System.Collections.Concurrent/internal/index.js';
24
22
  export type IProducerConsumerCollection<T> = Internal.IProducerConsumerCollection_1<T>;
23
+
24
+ // Multi-arity family sentinel (detects unspecified type parameters)
25
+ declare const __unspecified: unique symbol;
26
+ export type __ = typeof __unspecified;
27
+
28
+ export type Partitioner<
29
+ T1 = __,
30
+ > =
31
+ [T1] extends [__] ? Internal.Partitioner :
32
+ Internal.Partitioner_1<T1>;
33
+
@@ -81,6 +81,7 @@ export interface ICollection_1$instance<T> extends IEnumerable_1<T>, IEnumerable
81
81
  copyTo(array: T[], arrayIndex: int): void;
82
82
  getEnumerator(): IEnumerator_1<T>;
83
83
  getEnumerator(): IEnumerator;
84
+ getEnumerator2(): IEnumerator;
84
85
  }
85
86
 
86
87
 
@@ -108,6 +109,7 @@ export interface IDictionary_2$instance<TKey, TValue> extends ICollection_1<KeyV
108
109
  getEnumerator(): IEnumerator_1<KeyValuePair_2<TKey, TValue>>;
109
110
  getEnumerator(): IEnumerator;
110
111
  tryGetValue(key: TKey, value: { value: ref<TValue> }): boolean;
112
+ getEnumerator2(): IEnumerator;
111
113
  }
112
114
 
113
115
 
@@ -125,6 +127,7 @@ export interface IEnumerator_1$instance<T> extends IDisposable, IEnumerator {
125
127
  readonly current: T;
126
128
  dispose(): void;
127
129
  moveNext(): boolean;
130
+ reset(): void;
128
131
  }
129
132
 
130
133
 
@@ -153,6 +156,7 @@ export interface IList_1$instance<T> extends ICollection_1<T>, IEnumerable_1<T>,
153
156
  indexOf(item: T): int;
154
157
  insert(index: int, item: T): void;
155
158
  removeAt(index: int): void;
159
+ getEnumerator2(): IEnumerator;
156
160
  }
157
161
 
158
162
 
@@ -162,6 +166,7 @@ export interface IReadOnlyCollection_1$instance<T> extends IEnumerable_1<T>, IEn
162
166
  readonly count: int;
163
167
  getEnumerator(): IEnumerator_1<T>;
164
168
  getEnumerator(): IEnumerator;
169
+ getEnumerator2(): IEnumerator;
165
170
  }
166
171
 
167
172
 
@@ -176,6 +181,7 @@ export interface IReadOnlyDictionary_2$instance<TKey, TValue> extends IReadOnlyC
176
181
  getEnumerator(): IEnumerator_1<KeyValuePair_2<TKey, TValue>>;
177
182
  getEnumerator(): IEnumerator;
178
183
  tryGetValue(key: TKey, value: { value: ref<TValue> }): boolean;
184
+ getEnumerator2(): IEnumerator;
179
185
  }
180
186
 
181
187
 
@@ -186,6 +192,7 @@ export interface IReadOnlyList_1$instance<T> extends IReadOnlyCollection_1<T>, I
186
192
  readonly count: int;
187
193
  getEnumerator(): IEnumerator_1<T>;
188
194
  getEnumerator(): IEnumerator;
195
+ getEnumerator2(): IEnumerator;
189
196
  }
190
197
 
191
198
 
@@ -197,6 +204,7 @@ export interface IReadOnlySet_1$instance<T> extends IReadOnlyCollection_1<T>, IE
197
204
  getEnumerator(): IEnumerator_1<T>;
198
205
  getEnumerator(): IEnumerator;
199
206
  isProperSubsetOf(other: IEnumerable_1<T>): boolean;
207
+ getEnumerator2(): IEnumerator;
200
208
  }
201
209
 
202
210
 
@@ -213,6 +221,8 @@ export interface ISet_1$instance<T> extends ICollection_1<T>, IEnumerable_1<T>,
213
221
  getEnumerator(): IEnumerator;
214
222
  isSubsetOf(other: IEnumerable_1<T>): boolean;
215
223
  unionWith(other: IEnumerable_1<T>): void;
224
+ contains(item: T): boolean;
225
+ getEnumerator2(): IEnumerator;
216
226
  }
217
227
 
218
228
 
@@ -56,6 +56,7 @@ export interface IImmutableDictionary_2$instance<TKey, TValue> extends IReadOnly
56
56
  remove(key: TKey): IImmutableDictionary_2<TKey, TValue>;
57
57
  tryGetKey(equalKey: TKey, actualKey: { value: ref<TKey> }): boolean;
58
58
  tryGetValue(key: TKey, value: { value: ref<TValue> }): boolean;
59
+ getEnumerator2(): IEnumerator;
59
60
  }
60
61
 
61
62
 
@@ -78,6 +79,7 @@ export interface IImmutableList_1$instance<T> extends IReadOnlyList_1<T>, IEnume
78
79
  removeRange(items: IEnumerable_1<T>, equalityComparer: IEqualityComparer_1<T>): IImmutableList_1<T>;
79
80
  removeRange(index: int, count: int): IImmutableList_1<T>;
80
81
  replace(oldValue: T, newValue: T, equalityComparer: IEqualityComparer_1<T>): IImmutableList_1<T>;
82
+ getEnumerator2(): IEnumerator;
81
83
  }
82
84
 
83
85
 
@@ -90,6 +92,7 @@ export interface IImmutableQueue_1$instance<T> extends IEnumerable_1<T>, IEnumer
90
92
  getEnumerator(): IEnumerator_1<T>;
91
93
  getEnumerator(): IEnumerator;
92
94
  peek(): T;
95
+ getEnumerator2(): IEnumerator;
93
96
  }
94
97
 
95
98
 
@@ -105,6 +108,7 @@ export interface IImmutableSet_1$instance<T> extends IReadOnlyCollection_1<T>, I
105
108
  intersect(other: IEnumerable_1<T>): IImmutableSet_1<T>;
106
109
  setEquals(other: IEnumerable_1<T>): boolean;
107
110
  tryGetValue(equalValue: T, actualValue: { value: ref<T> }): boolean;
111
+ getEnumerator2(): IEnumerator;
108
112
  }
109
113
 
110
114
 
@@ -117,6 +121,7 @@ export interface IImmutableStack_1$instance<T> extends IEnumerable_1<T>, IEnumer
117
121
  getEnumerator(): IEnumerator;
118
122
  peek(): T;
119
123
  push(value: T): IImmutableStack_1<T>;
124
+ getEnumerator2(): IEnumerator;
120
125
  }
121
126
 
122
127
 
@@ -135,7 +140,7 @@ export interface ImmutableArray_1$instance<T> {
135
140
  addRange(items: ImmutableArray_1<T>, length: int): ImmutableArray_1<T>;
136
141
  addRange<TDerived extends T>(items: ImmutableArray_1<TDerived>): ImmutableArray_1<T>;
137
142
  addRange(items: ReadOnlySpan_1<T>): ImmutableArray_1<T>;
138
- addRange(items: T[]): ImmutableArray_1<T>;
143
+ addRange(...items: T[]): ImmutableArray_1<T>;
139
144
  as_<TOther>(): ImmutableArray_1<TOther>;
140
145
  asMemory(): ReadOnlyMemory_1<T>;
141
146
  asSpan(): ReadOnlySpan_1<T>;
@@ -213,7 +218,7 @@ export interface __ImmutableArray_1$views<T> {
213
218
  As_IEquatable_1(): System_Internal.IEquatable_1$instance<ImmutableArray_1<T>>;
214
219
 
215
220
  // Structural method bridges for numeric interface constraints
216
- Equals(other: ImmutableArray_1<T>): boolean;
221
+ equals(other: ImmutableArray_1<T>): boolean;
217
222
  }
218
223
 
219
224
  export interface ImmutableArray_1$instance<T> extends System_Collections_Internal.IStructuralComparable$instance {}
@@ -371,7 +376,7 @@ export interface ImmutableArray_1_Builder$instance<T> {
371
376
  item: T;
372
377
  add(item: T): void;
373
378
  addRange(items: IEnumerable_1<T>): void;
374
- addRange(items: T[]): void;
379
+ addRange(...items: T[]): void;
375
380
  addRange<TDerived extends T>(items: TDerived[]): void;
376
381
  addRange(items: T[], length: int): void;
377
382
  addRange(items: ImmutableArray_1<T>): void;
@@ -1025,7 +1030,7 @@ export abstract class ImmutableArray$instance {
1025
1030
  static create<T>(item1: T, item2: T): ImmutableArray_1<T>;
1026
1031
  static create<T>(item: T): ImmutableArray_1<T>;
1027
1032
  static create<T>(items: T[], start: int, length: int): ImmutableArray_1<T>;
1028
- static create<T>(items: T[]): ImmutableArray_1<T>;
1033
+ static create<T>(...items: T[]): ImmutableArray_1<T>;
1029
1034
  static createBuilder<T>(): ImmutableArray_1_Builder<T>;
1030
1035
  static createBuilder<T>(initialCapacity: int): ImmutableArray_1_Builder<T>;
1031
1036
  static createRange<T>(items: IEnumerable_1<T>): ImmutableArray_1<T>;
@@ -1075,11 +1080,11 @@ export abstract class ImmutableHashSet$instance {
1075
1080
  static create<T>(): ImmutableHashSet_1<T>;
1076
1081
  static create<T>(equalityComparer: IEqualityComparer_1<T>, items: ReadOnlySpan_1<T>): ImmutableHashSet_1<T>;
1077
1082
  static create<T>(equalityComparer: IEqualityComparer_1<T>, item: T): ImmutableHashSet_1<T>;
1078
- static create<T>(equalityComparer: IEqualityComparer_1<T>, items: T[]): ImmutableHashSet_1<T>;
1083
+ static create<T>(equalityComparer: IEqualityComparer_1<T>, ...items: T[]): ImmutableHashSet_1<T>;
1079
1084
  static create<T>(equalityComparer: IEqualityComparer_1<T>): ImmutableHashSet_1<T>;
1080
1085
  static create<T>(items: ReadOnlySpan_1<T>): ImmutableHashSet_1<T>;
1081
1086
  static create<T>(item: T): ImmutableHashSet_1<T>;
1082
- static create<T>(items: T[]): ImmutableHashSet_1<T>;
1087
+ static create<T>(...items: T[]): ImmutableHashSet_1<T>;
1083
1088
  static createBuilder<T>(): ImmutableHashSet_1_Builder<T>;
1084
1089
  static createBuilder<T>(equalityComparer: IEqualityComparer_1<T>): ImmutableHashSet_1_Builder<T>;
1085
1090
  static createRange<T>(items: IEnumerable_1<T>): ImmutableHashSet_1<T>;
@@ -1121,7 +1126,7 @@ export abstract class ImmutableList$instance {
1121
1126
  static create<T>(): ImmutableList_1<T>;
1122
1127
  static create<T>(items: ReadOnlySpan_1<T>): ImmutableList_1<T>;
1123
1128
  static create<T>(item: T): ImmutableList_1<T>;
1124
- static create<T>(items: T[]): ImmutableList_1<T>;
1129
+ static create<T>(...items: T[]): ImmutableList_1<T>;
1125
1130
  static createBuilder<T>(): ImmutableList_1_Builder<T>;
1126
1131
  static createRange<T>(items: IEnumerable_1<T>): ImmutableList_1<T>;
1127
1132
  static indexOf<T>(list: IImmutableList_1<T>, item: T, equalityComparer: IEqualityComparer_1<T>): int;
@@ -1146,7 +1151,7 @@ export abstract class ImmutableQueue$instance {
1146
1151
  static create<T>(): ImmutableQueue_1<T>;
1147
1152
  static create<T>(items: ReadOnlySpan_1<T>): ImmutableQueue_1<T>;
1148
1153
  static create<T>(item: T): ImmutableQueue_1<T>;
1149
- static create<T>(items: T[]): ImmutableQueue_1<T>;
1154
+ static create<T>(...items: T[]): ImmutableQueue_1<T>;
1150
1155
  static createRange<T>(items: IEnumerable_1<T>): ImmutableQueue_1<T>;
1151
1156
  static dequeue<T>(queue: IImmutableQueue_1<T>, value: { value: ref<T> }): IImmutableQueue_1<T>;
1152
1157
  }
@@ -1180,11 +1185,11 @@ export abstract class ImmutableSortedSet$instance {
1180
1185
  static create<T>(): ImmutableSortedSet_1<T>;
1181
1186
  static create<T>(comparer: IComparer_1<T>, items: ReadOnlySpan_1<T>): ImmutableSortedSet_1<T>;
1182
1187
  static create<T>(comparer: IComparer_1<T>, item: T): ImmutableSortedSet_1<T>;
1183
- static create<T>(comparer: IComparer_1<T>, items: T[]): ImmutableSortedSet_1<T>;
1188
+ static create<T>(comparer: IComparer_1<T>, ...items: T[]): ImmutableSortedSet_1<T>;
1184
1189
  static create<T>(comparer: IComparer_1<T>): ImmutableSortedSet_1<T>;
1185
1190
  static create<T>(items: ReadOnlySpan_1<T>): ImmutableSortedSet_1<T>;
1186
1191
  static create<T>(item: T): ImmutableSortedSet_1<T>;
1187
- static create<T>(items: T[]): ImmutableSortedSet_1<T>;
1192
+ static create<T>(...items: T[]): ImmutableSortedSet_1<T>;
1188
1193
  static createBuilder<T>(): ImmutableSortedSet_1_Builder<T>;
1189
1194
  static createBuilder<T>(comparer: IComparer_1<T>): ImmutableSortedSet_1_Builder<T>;
1190
1195
  static createRange<T>(comparer: IComparer_1<T>, items: IEnumerable_1<T>): ImmutableSortedSet_1<T>;
@@ -1201,7 +1206,7 @@ export abstract class ImmutableStack$instance {
1201
1206
  static create<T>(): ImmutableStack_1<T>;
1202
1207
  static create<T>(items: ReadOnlySpan_1<T>): ImmutableStack_1<T>;
1203
1208
  static create<T>(item: T): ImmutableStack_1<T>;
1204
- static create<T>(items: T[]): ImmutableStack_1<T>;
1209
+ static create<T>(...items: T[]): ImmutableStack_1<T>;
1205
1210
  static createRange<T>(items: IEnumerable_1<T>): ImmutableStack_1<T>;
1206
1211
  static pop<T>(stack: IImmutableStack_1<T>, value: { value: ref<T> }): IImmutableStack_1<T>;
1207
1212
  }
@@ -17,7 +17,16 @@ export { KeyedCollection_2 as KeyedCollection } from './System.Collections.Objec
17
17
  export { ObservableCollection_1 as ObservableCollection } from './System.Collections.ObjectModel/internal/index.js';
18
18
  export { ReadOnlyObservableCollection_1 as ReadOnlyObservableCollection } from './System.Collections.ObjectModel/internal/index.js';
19
19
  export { Collection_1 as Collection } from './System.Collections.ObjectModel/internal/index.js';
20
- export { ReadOnlyCollection_1 as ReadOnlyCollection } from './System.Collections.ObjectModel/internal/index.js';
21
- export { ReadOnlyCollection$instance as ReadOnlyCollection_0 } from './System.Collections.ObjectModel/internal/index.js';
22
20
  export { ReadOnlyDictionary_2 as ReadOnlyDictionary } from './System.Collections.ObjectModel/internal/index.js';
23
21
  export { ReadOnlySet_1 as ReadOnlySet } from './System.Collections.ObjectModel/internal/index.js';
22
+
23
+ // Multi-arity family sentinel (detects unspecified type parameters)
24
+ declare const __unspecified: unique symbol;
25
+ export type __ = typeof __unspecified;
26
+
27
+ export type ReadOnlyCollection<
28
+ T1 = __,
29
+ > =
30
+ [T1] extends [__] ? Internal.ReadOnlyCollection :
31
+ Internal.ReadOnlyCollection_1<T1>;
32
+
@@ -78,6 +78,7 @@ export interface IOrderedDictionary$instance extends IDictionary, ICollection, I
78
78
  removeAt(index: int): void;
79
79
  set_Item(index: int, value: unknown): void;
80
80
  set_Item(key: unknown, value: unknown): void;
81
+ getEnumerator2(): IEnumerator;
81
82
  }
82
83
 
83
84
 
@@ -111,7 +112,7 @@ export interface __BitVector32$views {
111
112
  As_IEquatable_1(): System_Internal.IEquatable_1$instance<BitVector32>;
112
113
 
113
114
  // Structural method bridges for numeric interface constraints
114
- Equals(other: BitVector32): boolean;
115
+ equals(other: BitVector32): boolean;
115
116
  }
116
117
 
117
118
  export type BitVector32 = BitVector32$instance & __BitVector32$views;
@@ -137,7 +138,7 @@ export interface __BitVector32_Section$views {
137
138
  As_IEquatable_1(): System_Internal.IEquatable_1$instance<BitVector32_Section>;
138
139
 
139
140
  // Structural method bridges for numeric interface constraints
140
- Equals(other: BitVector32_Section): boolean;
141
+ equals(other: BitVector32_Section): boolean;
141
142
  }
142
143
 
143
144
  export type BitVector32_Section = BitVector32_Section$instance & __BitVector32_Section$views;
@@ -234,6 +234,7 @@ export interface IBindingList$instance extends IList, ICollection, IEnumerable {
234
234
  remove(value: unknown): void;
235
235
  removeAt(index: int): void;
236
236
  removeSort(): void;
237
+ clear(): void;
237
238
  }
238
239
 
239
240
 
@@ -272,6 +273,8 @@ export interface IBindingListView$instance extends IBindingList, IList, ICollect
272
273
  remove(value: unknown): void;
273
274
  removeAt(index: int): void;
274
275
  removeFilter(): void;
276
+ clear(): void;
277
+ removeSort(): void;
275
278
  }
276
279
 
277
280
 
@@ -440,6 +443,7 @@ export type IRaiseItemChangedEvents = IRaiseItemChangedEvents$instance;
440
443
  export interface IRevertibleChangeTracking$instance extends IChangeTracking {
441
444
  readonly isChanged: boolean;
442
445
  rejectChanges(): void;
446
+ acceptChanges(): void;
443
447
  }
444
448
 
445
449
 
@@ -610,7 +614,7 @@ export interface AttributeCollection$instance {
610
614
  export const AttributeCollection: {
611
615
  new(attributes: Attribute[]): AttributeCollection$instance;
612
616
  readonly empty: AttributeCollection;
613
- fromExisting(existing: AttributeCollection, newAttributes: Attribute[]): AttributeCollection;
617
+ fromExisting(existing: AttributeCollection, ...newAttributes: Attribute[]): AttributeCollection;
614
618
  };
615
619
 
616
620
 
@@ -2894,8 +2898,8 @@ export const TypeDescriptor: {
2894
2898
  readonly interfaceType: Type;
2895
2899
  readonly comObjectType: Type;
2896
2900
  comNativeDescriptorHandler: IComNativeDescriptorHandler;
2897
- addAttributes(instance: unknown, attributes: Attribute[]): TypeDescriptionProvider;
2898
- addAttributes(type_: Type, attributes: Attribute[]): TypeDescriptionProvider;
2901
+ addAttributes(instance: unknown, ...attributes: Attribute[]): TypeDescriptionProvider;
2902
+ addAttributes(type_: Type, ...attributes: Attribute[]): TypeDescriptionProvider;
2899
2903
  addEditorTable(editorBaseType: Type, table: Hashtable): void;
2900
2904
  addProvider(provider: TypeDescriptionProvider, instance: unknown): void;
2901
2905
  addProvider(provider: TypeDescriptionProvider, type_: Type): void;
@@ -2903,11 +2907,11 @@ export const TypeDescriptor: {
2903
2907
  addProviderTransparent(provider: TypeDescriptionProvider, type_: Type): void;
2904
2908
  createAssociation(primary: unknown, secondary: unknown): void;
2905
2909
  createDesigner(component: IComponent, designerBaseType: Type): IDesigner;
2906
- createEvent(componentType: Type, oldEventDescriptor: EventDescriptor, attributes: Attribute[]): EventDescriptor;
2907
- createEvent(componentType: Type, name: string, type_: Type, attributes: Attribute[]): EventDescriptor;
2910
+ createEvent(componentType: Type, oldEventDescriptor: EventDescriptor, ...attributes: Attribute[]): EventDescriptor;
2911
+ createEvent(componentType: Type, name: string, type_: Type, ...attributes: Attribute[]): EventDescriptor;
2908
2912
  createInstance(provider: IServiceProvider, objectType: Type, argTypes: Type[], args: unknown[]): unknown;
2909
- createProperty(componentType: Type, oldPropertyDescriptor: PropertyDescriptor, attributes: Attribute[]): PropertyDescriptor;
2910
- createProperty(componentType: Type, name: string, type_: Type, attributes: Attribute[]): PropertyDescriptor;
2913
+ createProperty(componentType: Type, oldPropertyDescriptor: PropertyDescriptor, ...attributes: Attribute[]): PropertyDescriptor;
2914
+ createProperty(componentType: Type, name: string, type_: Type, ...attributes: Attribute[]): PropertyDescriptor;
2911
2915
  getAssociation(type_: Type, primary: unknown): unknown;
2912
2916
  getAttributes(component: unknown, noCustomTypeDesc: boolean): AttributeCollection;
2913
2917
  getAttributes(component: unknown): AttributeCollection;
@@ -134,6 +134,7 @@ export interface IDesigner$instance extends IDisposable {
134
134
  readonly verbs: DesignerVerbCollection;
135
135
  doDefaultAction(): void;
136
136
  initialize(component: IComponent): void;
137
+ dispose(): void;
137
138
  }
138
139
 
139
140
 
@@ -292,6 +293,7 @@ export interface IRootDesigner$instance extends IDesigner, IDisposable {
292
293
  doDefaultAction(): void;
293
294
  getView(technology: ViewTechnology): unknown;
294
295
  initialize(component: IComponent): void;
296
+ dispose(): void;
295
297
  }
296
298
 
297
299
 
@@ -333,6 +335,7 @@ export interface ITreeDesigner$instance extends IDesigner, IDisposable {
333
335
  readonly verbs: DesignerVerbCollection;
334
336
  doDefaultAction(): void;
335
337
  initialize(component: IComponent): void;
338
+ dispose(): void;
336
339
  }
337
340
 
338
341
 
@@ -68,6 +68,7 @@ export interface IDesignerLoaderHost$instance extends IDesignerHost, IServiceCon
68
68
  reload(): void;
69
69
  removeService(serviceType: Type, promote: boolean): void;
70
70
  removeService(serviceType: Type): void;
71
+ activate(): void;
71
72
  }
72
73
 
73
74
 
@@ -98,6 +99,7 @@ export interface IDesignerLoaderHost2$instance extends IDesignerLoaderHost, IDes
98
99
  reload(): void;
99
100
  removeService(serviceType: Type, promote: boolean): void;
100
101
  removeService(serviceType: Type): void;
102
+ activate(): void;
101
103
  }
102
104
 
103
105
 
@@ -175,7 +177,7 @@ export interface __MemberRelationship$views {
175
177
  As_IEquatable_1(): System_Internal.IEquatable_1$instance<MemberRelationship>;
176
178
 
177
179
  // Structural method bridges for numeric interface constraints
178
- Equals(other: MemberRelationship): boolean;
180
+ equals(other: MemberRelationship): boolean;
179
181
  }
180
182
 
181
183
  export type MemberRelationship = MemberRelationship$instance & __MemberRelationship$views;
@@ -476,6 +476,8 @@ export interface IDataReader$instance extends IDisposable, IDataRecord {
476
476
  getValue(i: int): unknown;
477
477
  getValues(values: unknown[]): int;
478
478
  nextResult(): boolean;
479
+ dispose(): void;
480
+ get_Item2(name: string): unknown;
479
481
  }
480
482
 
481
483
 
@@ -525,6 +527,7 @@ export interface IDbCommand$instance extends IDisposable {
525
527
  executeReader(behavior: CommandBehavior): IDataReader;
526
528
  executeScalar(): unknown;
527
529
  prepare(): void;
530
+ dispose(): void;
528
531
  }
529
532
 
530
533
 
@@ -542,6 +545,7 @@ export interface IDbConnection$instance extends IDisposable {
542
545
  changeDatabase(databaseName: string): void;
543
546
  close(): void;
544
547
  createCommand(): IDbCommand;
548
+ dispose(): void;
545
549
  }
546
550
 
547
551
 
@@ -589,6 +593,7 @@ export interface IDbTransaction$instance extends IDisposable {
589
593
  readonly connection: IDbConnection;
590
594
  readonly isolationLevel: IsolationLevel;
591
595
  commit(): void;
596
+ dispose(): void;
592
597
  }
593
598
 
594
599
 
@@ -967,7 +972,7 @@ export interface DataRowCollection$instance extends InternalDataCollectionBase$i
967
972
  readonly count: int;
968
973
  readonly item: DataRow;
969
974
  add(row: DataRow): void;
970
- add(values: unknown[]): DataRow;
975
+ add(...values: unknown[]): DataRow;
971
976
  clear(): void;
972
977
  contains(key: unknown): boolean;
973
978
  contains(keys: unknown[]): boolean;
@@ -1076,7 +1081,7 @@ export interface DataSet$instance extends MarshalByValueComponent {
1076
1081
  clone(): DataSet;
1077
1082
  copy(): DataSet;
1078
1083
  createDataReader(): DataTableReader;
1079
- createDataReader(dataTables: DataTable[]): DataTableReader;
1084
+ createDataReader(...dataTables: DataTable[]): DataTableReader;
1080
1085
  dispose(): void;
1081
1086
  endInit(): void;
1082
1087
  getChanges(): DataSet;
@@ -1091,9 +1096,9 @@ export interface DataSet$instance extends MarshalByValueComponent {
1091
1096
  inferXmlSchema(stream: Stream, nsArray: string[]): void;
1092
1097
  inferXmlSchema(reader: TextReader, nsArray: string[]): void;
1093
1098
  inferXmlSchema(fileName: string, nsArray: string[]): void;
1094
- load(reader: IDataReader, loadOption: LoadOption, errorHandler: FillErrorEventHandler, tables: DataTable[]): void;
1095
- load(reader: IDataReader, loadOption: LoadOption, tables: DataTable[]): void;
1096
- load(reader: IDataReader, loadOption: LoadOption, tables: string[]): void;
1099
+ load(reader: IDataReader, loadOption: LoadOption, errorHandler: FillErrorEventHandler, ...tables: DataTable[]): void;
1100
+ load(reader: IDataReader, loadOption: LoadOption, ...tables: DataTable[]): void;
1101
+ load(reader: IDataReader, loadOption: LoadOption, ...tables: string[]): void;
1097
1102
  merge(dataSet: DataSet): void;
1098
1103
  merge(dataSet: DataSet, preserveChanges: boolean): void;
1099
1104
  merge(dataSet: DataSet, preserveChanges: boolean, missingSchemaAction: MissingSchemaAction): void;
@@ -1436,8 +1441,8 @@ export interface DataView$instance extends MarshalByValueComponent {
1436
1441
  getService(service: Type): unknown;
1437
1442
  toTable(): DataTable;
1438
1443
  toTable(tableName: string): DataTable;
1439
- toTable(distinct: boolean, columnNames: string[]): DataTable;
1440
- toTable(tableName: string, distinct: boolean, columnNames: string[]): DataTable;
1444
+ toTable(distinct: boolean, ...columnNames: string[]): DataTable;
1445
+ toTable(tableName: string, distinct: boolean, ...columnNames: string[]): DataTable;
1441
1446
  }
1442
1447
 
1443
1448
 
@@ -107,8 +107,8 @@ export interface __SqlBinary$views {
107
107
  As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
108
108
 
109
109
  // Structural method bridges for numeric interface constraints
110
- Equals(other: SqlBinary): boolean;
111
- CompareTo(obj: unknown): int;
110
+ equals(other: SqlBinary): boolean;
111
+ compareTo(obj: unknown): int;
112
112
  }
113
113
 
114
114
  export interface SqlBinary$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
@@ -170,8 +170,8 @@ export interface __SqlBoolean$views {
170
170
  As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
171
171
 
172
172
  // Structural method bridges for numeric interface constraints
173
- Equals(other: SqlBoolean): boolean;
174
- CompareTo(obj: unknown): int;
173
+ equals(other: SqlBoolean): boolean;
174
+ compareTo(obj: unknown): int;
175
175
  }
176
176
 
177
177
  export interface SqlBoolean$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
@@ -234,8 +234,8 @@ export interface __SqlByte$views {
234
234
  As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
235
235
 
236
236
  // Structural method bridges for numeric interface constraints
237
- Equals(other: SqlByte): boolean;
238
- CompareTo(obj: unknown): int;
237
+ equals(other: SqlByte): boolean;
238
+ compareTo(obj: unknown): int;
239
239
  }
240
240
 
241
241
  export interface SqlByte$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
@@ -291,8 +291,8 @@ export interface __SqlDateTime$views {
291
291
  As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
292
292
 
293
293
  // Structural method bridges for numeric interface constraints
294
- Equals(other: SqlDateTime): boolean;
295
- CompareTo(obj: unknown): int;
294
+ equals(other: SqlDateTime): boolean;
295
+ compareTo(obj: unknown): int;
296
296
  }
297
297
 
298
298
  export interface SqlDateTime$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
@@ -371,8 +371,8 @@ export interface __SqlDecimal$views {
371
371
  As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
372
372
 
373
373
  // Structural method bridges for numeric interface constraints
374
- Equals(other: SqlDecimal): boolean;
375
- CompareTo(obj: unknown): int;
374
+ equals(other: SqlDecimal): boolean;
375
+ compareTo(obj: unknown): int;
376
376
  }
377
377
 
378
378
  export interface SqlDecimal$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
@@ -429,8 +429,8 @@ export interface __SqlDouble$views {
429
429
  As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
430
430
 
431
431
  // Structural method bridges for numeric interface constraints
432
- Equals(other: SqlDouble): boolean;
433
- CompareTo(obj: unknown): int;
432
+ equals(other: SqlDouble): boolean;
433
+ compareTo(obj: unknown): int;
434
434
  }
435
435
 
436
436
  export interface SqlDouble$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
@@ -478,8 +478,8 @@ export interface __SqlGuid$views {
478
478
  As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
479
479
 
480
480
  // Structural method bridges for numeric interface constraints
481
- Equals(other: SqlGuid): boolean;
482
- CompareTo(obj: unknown): int;
481
+ equals(other: SqlGuid): boolean;
482
+ compareTo(obj: unknown): int;
483
483
  }
484
484
 
485
485
  export interface SqlGuid$instance extends INullable$instance, System_Runtime_Serialization_Internal.ISerializable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
@@ -542,8 +542,8 @@ export interface __SqlInt16$views {
542
542
  As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
543
543
 
544
544
  // Structural method bridges for numeric interface constraints
545
- Equals(other: SqlInt16): boolean;
546
- CompareTo(obj: unknown): int;
545
+ equals(other: SqlInt16): boolean;
546
+ compareTo(obj: unknown): int;
547
547
  }
548
548
 
549
549
  export interface SqlInt16$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
@@ -606,8 +606,8 @@ export interface __SqlInt32$views {
606
606
  As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
607
607
 
608
608
  // Structural method bridges for numeric interface constraints
609
- Equals(other: SqlInt32): boolean;
610
- CompareTo(obj: unknown): int;
609
+ equals(other: SqlInt32): boolean;
610
+ compareTo(obj: unknown): int;
611
611
  }
612
612
 
613
613
  export interface SqlInt32$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
@@ -670,8 +670,8 @@ export interface __SqlInt64$views {
670
670
  As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
671
671
 
672
672
  // Structural method bridges for numeric interface constraints
673
- Equals(other: SqlInt64): boolean;
674
- CompareTo(obj: unknown): int;
673
+ equals(other: SqlInt64): boolean;
674
+ compareTo(obj: unknown): int;
675
675
  }
676
676
 
677
677
  export interface SqlInt64$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
@@ -737,8 +737,8 @@ export interface __SqlMoney$views {
737
737
  As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
738
738
 
739
739
  // Structural method bridges for numeric interface constraints
740
- Equals(other: SqlMoney): boolean;
741
- CompareTo(obj: unknown): int;
740
+ equals(other: SqlMoney): boolean;
741
+ compareTo(obj: unknown): int;
742
742
  }
743
743
 
744
744
  export interface SqlMoney$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
@@ -796,8 +796,8 @@ export interface __SqlSingle$views {
796
796
  As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
797
797
 
798
798
  // Structural method bridges for numeric interface constraints
799
- Equals(other: SqlSingle): boolean;
800
- CompareTo(obj: unknown): int;
799
+ equals(other: SqlSingle): boolean;
800
+ compareTo(obj: unknown): int;
801
801
  }
802
802
 
803
803
  export interface SqlSingle$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
@@ -870,8 +870,8 @@ export interface __SqlString$views {
870
870
  As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
871
871
 
872
872
  // Structural method bridges for numeric interface constraints
873
- Equals(other: SqlString): boolean;
874
- CompareTo(obj: unknown): int;
873
+ equals(other: SqlString): boolean;
874
+ compareTo(obj: unknown): int;
875
875
  }
876
876
 
877
877
  export interface SqlString$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
package/System.Data.d.ts CHANGED
@@ -58,8 +58,6 @@ export { DataRowAction as DataRowAction } from './System.Data/internal/index.js'
58
58
  export { DataRowChangeEventArgs as DataRowChangeEventArgs } from './System.Data/internal/index.js';
59
59
  export type DataRowChangeEventHandler = Internal.DataRowChangeEventHandler;
60
60
  export { DataRowCollection as DataRowCollection } from './System.Data/internal/index.js';
61
- export { DataRowComparer$instance as DataRowComparer_0 } from './System.Data/internal/index.js';
62
- export { DataRowComparer_1 as DataRowComparer } from './System.Data/internal/index.js';
63
61
  export { DataRowExtensions$instance as DataRowExtensions } from './System.Data/internal/index.js';
64
62
  export { DataRowState as DataRowState } from './System.Data/internal/index.js';
65
63
  export { DataRowVersion as DataRowVersion } from './System.Data/internal/index.js';
@@ -83,8 +81,6 @@ export { DataViewSetting as DataViewSetting } from './System.Data/internal/index
83
81
  export { DataViewSettingCollection as DataViewSettingCollection } from './System.Data/internal/index.js';
84
82
  export { DBConcurrencyException as DBConcurrencyException } from './System.Data/internal/index.js';
85
83
  export { DbType as DbType } from './System.Data/internal/index.js';
86
- export { EnumerableRowCollection as EnumerableRowCollection_0 } from './System.Data/internal/index.js';
87
- export { EnumerableRowCollection_1 as EnumerableRowCollection } from './System.Data/internal/index.js';
88
84
  export { EnumerableRowCollectionExtensions$instance as EnumerableRowCollectionExtensions } from './System.Data/internal/index.js';
89
85
  export { FillErrorEventArgs as FillErrorEventArgs } from './System.Data/internal/index.js';
90
86
  export type FillErrorEventHandler = Internal.FillErrorEventHandler;
@@ -131,3 +127,20 @@ export { UpdateRowSource as UpdateRowSource } from './System.Data/internal/index
131
127
  export { InvalidExpressionException as InvalidExpressionException } from './System.Data/internal/index.js';
132
128
  export { EvaluateException as EvaluateException } from './System.Data/internal/index.js';
133
129
  export { SyntaxErrorException as SyntaxErrorException } from './System.Data/internal/index.js';
130
+
131
+ // Multi-arity family sentinel (detects unspecified type parameters)
132
+ declare const __unspecified: unique symbol;
133
+ export type __ = typeof __unspecified;
134
+
135
+ export type DataRowComparer<
136
+ T1 = __,
137
+ > =
138
+ [T1] extends [__] ? Internal.DataRowComparer :
139
+ [T1] extends [Internal.DataRow] ? Internal.DataRowComparer_1<T1> : never;
140
+
141
+ export type EnumerableRowCollection<
142
+ T1 = __,
143
+ > =
144
+ [T1] extends [__] ? Internal.EnumerableRowCollection :
145
+ Internal.EnumerableRowCollection_1<T1>;
146
+