@tsonic/dotnet 10.0.3 → 10.0.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 (33) hide show
  1. package/System/internal/index.d.ts +4 -4
  2. package/System.Collections/internal/index.d.ts +3 -3
  3. package/System.Collections.Generic/internal/index.d.ts +5 -5
  4. package/System.Collections.Immutable/internal/index.d.ts +7 -7
  5. package/System.Collections.ObjectModel/internal/index.d.ts +2 -2
  6. package/System.Collections.Specialized/internal/index.d.ts +3 -4
  7. package/System.ComponentModel/internal/index.d.ts +6 -6
  8. package/System.ComponentModel.Design/internal/index.d.ts +2 -2
  9. package/System.Data/internal/index.d.ts +2 -2
  10. package/System.Data.Common/internal/index.d.ts +3 -3
  11. package/System.Data.SqlTypes/internal/index.d.ts +3 -3
  12. package/System.Diagnostics/internal/index.d.ts +4 -5
  13. package/System.Net/internal/index.d.ts +1 -1
  14. package/System.Net.Http.Headers/internal/index.d.ts +1 -1
  15. package/System.Net.NetworkInformation/internal/index.d.ts +5 -5
  16. package/System.Numerics/internal/index.d.ts +5 -5
  17. package/System.Reflection/internal/index.d.ts +1 -1
  18. package/System.Reflection.Metadata/internal/index.d.ts +2 -2
  19. package/System.Runtime.CompilerServices/internal/index.d.ts +3 -4
  20. package/System.Runtime.Intrinsics/internal/index.d.ts +4 -4
  21. package/System.Security.AccessControl/internal/index.d.ts +4 -4
  22. package/System.Security.Cryptography/internal/index.d.ts +1 -1
  23. package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +2 -2
  24. package/System.Security.Principal/internal/index.d.ts +1 -1
  25. package/System.Text/internal/index.d.ts +1 -1
  26. package/System.Text.Json/internal/index.d.ts +1 -1
  27. package/System.Text.RegularExpressions/internal/index.d.ts +2 -2
  28. package/System.Threading.Tasks/internal/index.d.ts +4 -0
  29. package/System.Xml/internal/index.d.ts +1 -1
  30. package/System.Xml.Schema/internal/index.d.ts +2 -2
  31. package/System.Xml.Serialization/internal/index.d.ts +4 -4
  32. package/System.Xml.Xsl.Runtime/internal/index.d.ts +1 -1
  33. package/package.json +1 -1
@@ -813,7 +813,7 @@ export type ArgIterator = ArgIterator$instance;
813
813
  export interface ArraySegment_1$instance<T> {
814
814
  readonly Array: T[] | undefined;
815
815
  readonly Count: int;
816
- Item: T;
816
+ [index: number]: T;
817
817
  readonly Offset: int;
818
818
  CopyTo(destination: T[]): void;
819
819
  CopyTo(destination: T[], destinationIndex: int): void;
@@ -2876,7 +2876,7 @@ export type ReadOnlyMemory_1<T> = ReadOnlyMemory_1$instance<T> & __ReadOnlyMemor
2876
2876
 
2877
2877
  export interface ReadOnlySpan_1$instance<T> {
2878
2878
  readonly IsEmpty: boolean;
2879
- readonly Item: T;
2879
+ readonly [index: number]: T;
2880
2880
  readonly Length: int;
2881
2881
  CopyTo(destination: Span_1<T>): void;
2882
2882
  Equals(obj: unknown): boolean;
@@ -3327,7 +3327,7 @@ export type Single = number & Single$instance & __Single$views;
3327
3327
 
3328
3328
  export interface Span_1$instance<T> {
3329
3329
  readonly IsEmpty: boolean;
3330
- readonly Item: T;
3330
+ readonly [index: number]: T;
3331
3331
  readonly Length: int;
3332
3332
  Clear(): void;
3333
3333
  CopyTo(destination: Span_1<T>): void;
@@ -6432,7 +6432,7 @@ export const STAThreadAttribute: {
6432
6432
  export type STAThreadAttribute = STAThreadAttribute$instance;
6433
6433
 
6434
6434
  export interface String$instance {
6435
- readonly Chars: char;
6435
+ readonly [index: number]: char;
6436
6436
  readonly Length: int;
6437
6437
  Clone(): unknown;
6438
6438
  CompareTo(value: unknown): int;
@@ -103,7 +103,7 @@ export interface IHashCodeProvider$instance {
103
103
  export type IHashCodeProvider = IHashCodeProvider$instance;
104
104
 
105
105
  export interface IList$instance extends ICollection, IEnumerable {
106
- Item: unknown;
106
+ [index: number]: unknown;
107
107
  readonly IsReadOnly: boolean;
108
108
  readonly IsFixedSize: boolean;
109
109
  readonly Count: int;
@@ -159,7 +159,7 @@ export interface ArrayList$instance {
159
159
  readonly IsFixedSize: boolean;
160
160
  readonly IsReadOnly: boolean;
161
161
  readonly IsSynchronized: boolean;
162
- Item: unknown;
162
+ [index: number]: unknown;
163
163
  readonly SyncRoot: unknown;
164
164
  Add(value: unknown): int;
165
165
  AddRange(c: ICollection): void;
@@ -229,7 +229,7 @@ export interface BitArray$instance {
229
229
  readonly Count: int;
230
230
  readonly IsReadOnly: boolean;
231
231
  readonly IsSynchronized: boolean;
232
- Item: boolean;
232
+ [index: number]: boolean;
233
233
  Length: int;
234
234
  readonly SyncRoot: unknown;
235
235
  And(value: BitArray): BitArray;
@@ -119,7 +119,7 @@ export interface IEqualityComparer_1$instance<T> {
119
119
  export type IEqualityComparer_1<T> = IEqualityComparer_1$instance<T>;
120
120
 
121
121
  export interface IList_1$instance<T> extends ICollection_1<T>, IEnumerable_1<T>, IEnumerable {
122
- Item: T;
122
+ [index: number]: T;
123
123
  readonly Count: int;
124
124
  readonly IsReadOnly: boolean;
125
125
  Add(item: T): void;
@@ -163,7 +163,7 @@ export interface IReadOnlyDictionary_2$instance<TKey, TValue> extends IReadOnlyC
163
163
  export type IReadOnlyDictionary_2<TKey, TValue> = IReadOnlyDictionary_2$instance<TKey, TValue>;
164
164
 
165
165
  export interface IReadOnlyList_1$instance<T> extends IReadOnlyCollection_1<T>, IEnumerable_1<T>, IEnumerable {
166
- readonly Item: T;
166
+ readonly [index: number]: T;
167
167
  readonly Count: int;
168
168
  GetEnumerator(): IEnumerator_1<T>;
169
169
  GetEnumerator(): IEnumerator;
@@ -974,7 +974,7 @@ export type LinkedListNode_1<T> = LinkedListNode_1$instance<T>;
974
974
  export interface List_1$instance<T> {
975
975
  Capacity: int;
976
976
  readonly Count: int;
977
- Item: T;
977
+ [index: number]: T;
978
978
  Add(item: T): void;
979
979
  AddRange(collection: IEnumerable_1<T>): void;
980
980
  AsReadOnly(): ReadOnlyCollection_1<T>;
@@ -1529,7 +1529,7 @@ export type SortedList_2<TKey, TValue> = SortedList_2$instance<TKey, TValue> & _
1529
1529
  export interface SortedList_2_KeyList$instance<TKey, TValue> {
1530
1530
  readonly Count: int;
1531
1531
  readonly IsReadOnly: boolean;
1532
- Item: TKey;
1532
+ [index: number]: TKey;
1533
1533
  Add(key: TKey): void;
1534
1534
  Clear(): void;
1535
1535
  Contains(key: TKey): boolean;
@@ -1560,7 +1560,7 @@ export type SortedList_2_KeyList<TKey, TValue> = SortedList_2_KeyList$instance<T
1560
1560
  export interface SortedList_2_ValueList$instance<TKey, TValue> {
1561
1561
  readonly Count: int;
1562
1562
  readonly IsReadOnly: boolean;
1563
- Item: TValue;
1563
+ [index: number]: TValue;
1564
1564
  Add(key: TValue): void;
1565
1565
  Clear(): void;
1566
1566
  Contains(value: TValue): boolean;
@@ -38,7 +38,7 @@ export interface IImmutableDictionary_2$instance<TKey, TValue> extends IReadOnly
38
38
  export type IImmutableDictionary_2<TKey, TValue> = IImmutableDictionary_2$instance<TKey, TValue>;
39
39
 
40
40
  export interface IImmutableList_1$instance<T> extends IReadOnlyList_1<T>, IEnumerable_1<T>, IEnumerable, IReadOnlyCollection_1<T> {
41
- readonly Item: T;
41
+ readonly [index: number]: T;
42
42
  readonly Count: int;
43
43
  Add(value: T): IImmutableList_1<T>;
44
44
  AddRange(items: IEnumerable_1<T>): IImmutableList_1<T>;
@@ -106,7 +106,7 @@ export interface ImmutableArray_1$instance<T> {
106
106
  readonly IsDefault: boolean;
107
107
  readonly IsDefaultOrEmpty: boolean;
108
108
  readonly IsEmpty: boolean;
109
- readonly Item: T;
109
+ readonly [index: number]: T;
110
110
  readonly Length: int;
111
111
  Add(item: T): ImmutableArray_1<T>;
112
112
  AddRange(items: IEnumerable_1<T>): ImmutableArray_1<T>;
@@ -348,7 +348,7 @@ export type ImmutableStack_1_Enumerator<T> = ImmutableStack_1_Enumerator$instanc
348
348
  export interface ImmutableArray_1_Builder$instance<T> {
349
349
  Capacity: int;
350
350
  Count: int;
351
- Item: T;
351
+ [index: number]: T;
352
352
  Add(item: T): void;
353
353
  AddRange(items: IEnumerable_1<T>): void;
354
354
  AddRange(...items: T[]): void;
@@ -590,7 +590,7 @@ export type ImmutableHashSet_1_Builder<T> = ImmutableHashSet_1_Builder$instance<
590
590
  export interface ImmutableList_1$instance<T> {
591
591
  readonly Count: int;
592
592
  readonly IsEmpty: boolean;
593
- readonly Item: T;
593
+ readonly [index: number]: T;
594
594
  Add(value: T): ImmutableList_1<T>;
595
595
  AddRange(items: IEnumerable_1<T>): ImmutableList_1<T>;
596
596
  BinarySearch(item: T): int;
@@ -663,7 +663,7 @@ export type ImmutableList_1<T> = ImmutableList_1$instance<T> & __ImmutableList_1
663
663
 
664
664
  export interface ImmutableList_1_Builder$instance<T> {
665
665
  readonly Count: int;
666
- Item: T;
666
+ [index: number]: T;
667
667
  Add(item: T): void;
668
668
  AddRange(items: IEnumerable_1<T>): void;
669
669
  BinarySearch(item: T): int;
@@ -858,7 +858,7 @@ export type ImmutableSortedDictionary_2_Builder<TKey, TValue> = ImmutableSortedD
858
858
  export interface ImmutableSortedSet_1$instance<T> {
859
859
  readonly Count: int;
860
860
  readonly IsEmpty: boolean;
861
- readonly Item: T;
861
+ readonly [index: number]: T;
862
862
  readonly KeyComparer: IComparer_1<T>;
863
863
  readonly Max: T | undefined;
864
864
  readonly Min: T | undefined;
@@ -909,7 +909,7 @@ export type ImmutableSortedSet_1<T> = ImmutableSortedSet_1$instance<T> & __Immut
909
909
 
910
910
  export interface ImmutableSortedSet_1_Builder$instance<T> {
911
911
  readonly Count: int;
912
- readonly Item: T;
912
+ readonly [index: number]: T;
913
913
  KeyComparer: IComparer_1<T>;
914
914
  readonly Max: T | undefined;
915
915
  readonly Min: T | undefined;
@@ -22,7 +22,7 @@ import type { Array as ClrArray, Boolean as ClrBoolean, IDisposable, Int32, Obje
22
22
 
23
23
  export interface Collection_1$instance<T> {
24
24
  readonly Count: int;
25
- Item: T;
25
+ [index: number]: T;
26
26
  Add(item: T): void;
27
27
  Clear(): void;
28
28
  ClearItems(): void;
@@ -152,7 +152,7 @@ export type ObservableCollection_1<T> = ObservableCollection_1$instance<T> & __O
152
152
 
153
153
  export interface ReadOnlyCollection_1$instance<T> {
154
154
  readonly Count: int;
155
- readonly Item: T;
155
+ readonly [index: number]: T;
156
156
  Contains(value: T): boolean;
157
157
  CopyTo(array: T[], index: int): void;
158
158
  GetEnumerator(): IEnumerator_1<T>;
@@ -245,7 +245,7 @@ export type NameObjectCollectionBase = NameObjectCollectionBase$instance & __Nam
245
245
 
246
246
  export interface NameObjectCollectionBase_KeysCollection$instance {
247
247
  readonly Count: int;
248
- readonly Item: string | undefined;
248
+ readonly [index: number]: string | undefined;
249
249
  Get(index: int): string | undefined;
250
250
  GetEnumerator(): IEnumerator;
251
251
  }
@@ -385,7 +385,7 @@ export interface StringCollection$instance {
385
385
  readonly Count: int;
386
386
  readonly IsReadOnly: boolean;
387
387
  readonly IsSynchronized: boolean;
388
- Item: string;
388
+ [index: number]: string;
389
389
  readonly SyncRoot: unknown;
390
390
  Add(value: string): int;
391
391
  AddRange(value: string[]): void;
@@ -417,8 +417,7 @@ export type StringCollection = StringCollection$instance & __StringCollection$vi
417
417
  export interface StringDictionary$instance {
418
418
  readonly Count: int;
419
419
  readonly IsSynchronized: boolean;
420
- get Item(): string | undefined;
421
- set Item(value: string | undefined);
420
+ [key: string]: string | undefined;
422
421
  readonly Keys: ICollection;
423
422
  readonly SyncRoot: unknown;
424
423
  readonly Values: ICollection;
@@ -191,7 +191,7 @@ export interface IBindingList$instance extends IList, ICollection, IEnumerable {
191
191
  readonly IsSorted: boolean;
192
192
  readonly SortProperty: PropertyDescriptor | undefined;
193
193
  readonly SortDirection: ListSortDirection;
194
- Item: unknown;
194
+ [index: number]: unknown;
195
195
  readonly IsReadOnly: boolean;
196
196
  readonly IsFixedSize: boolean;
197
197
  readonly Count: int;
@@ -230,7 +230,7 @@ export interface IBindingListView$instance extends IBindingList, IList, ICollect
230
230
  readonly IsSorted: boolean;
231
231
  readonly SortProperty: PropertyDescriptor | undefined;
232
232
  readonly SortDirection: ListSortDirection;
233
- Item: unknown;
233
+ [index: number]: unknown;
234
234
  readonly IsReadOnly: boolean;
235
235
  readonly IsFixedSize: boolean;
236
236
  readonly Count: int;
@@ -330,7 +330,7 @@ export interface ICustomTypeDescriptor$instance {
330
330
  export type ICustomTypeDescriptor = ICustomTypeDescriptor$instance;
331
331
 
332
332
  export interface IDataErrorInfo$instance {
333
- readonly Item: string;
333
+ readonly [columnName: string]: string;
334
334
  readonly Error: string;
335
335
  }
336
336
 
@@ -2034,7 +2034,7 @@ export type ListSortDescription = ListSortDescription$instance;
2034
2034
 
2035
2035
  export interface ListSortDescriptionCollection$instance {
2036
2036
  readonly Count: int;
2037
- Item: ListSortDescription;
2037
+ [index: number]: ListSortDescription;
2038
2038
  Contains(value: unknown): boolean;
2039
2039
  CopyTo(array: ClrArray, index: int): void;
2040
2040
  IndexOf(value: unknown): int;
@@ -2133,7 +2133,7 @@ export interface MaskedTextProvider$instance {
2133
2133
  IncludeLiterals: boolean;
2134
2134
  IncludePrompt: boolean;
2135
2135
  IsPassword: boolean;
2136
- readonly Item: char;
2136
+ readonly [index: number]: char;
2137
2137
  readonly LastAssignedPosition: int;
2138
2138
  readonly Length: int;
2139
2139
  readonly Mask: string;
@@ -2851,7 +2851,7 @@ export type TypeConverter = TypeConverter$instance;
2851
2851
 
2852
2852
  export interface TypeConverter_StandardValuesCollection$instance {
2853
2853
  readonly Count: int;
2854
- readonly Item: unknown | undefined;
2854
+ readonly [index: number]: unknown | undefined;
2855
2855
  CopyTo(array: ClrArray, index: int): void;
2856
2856
  GetEnumerator(): IEnumerator;
2857
2857
  }
@@ -451,7 +451,7 @@ export type ComponentRenameEventArgs = ComponentRenameEventArgs$instance;
451
451
 
452
452
  export interface DesignerCollection$instance {
453
453
  readonly Count: int;
454
- readonly Item: IDesignerHost | undefined;
454
+ readonly [index: number]: IDesignerHost | undefined;
455
455
  GetEnumerator(): IEnumerator;
456
456
  }
457
457
 
@@ -583,7 +583,7 @@ export const DesignerVerb: {
583
583
  export type DesignerVerb = DesignerVerb$instance;
584
584
 
585
585
  export interface DesignerVerbCollection$instance extends CollectionBase {
586
- Item: DesignerVerb;
586
+ [index: number]: DesignerVerb;
587
587
  Add(value: unknown): int;
588
588
  AddRange(value: DesignerVerb[]): void;
589
589
  AddRange(value: DesignerVerbCollection): void;
@@ -958,7 +958,7 @@ export type DataRowChangeEventArgs = DataRowChangeEventArgs$instance;
958
958
 
959
959
  export interface DataRowCollection$instance extends InternalDataCollectionBase$instance {
960
960
  readonly Count: int;
961
- readonly Item: DataRow;
961
+ readonly [index: number]: DataRow;
962
962
  Add(row: DataRow): void;
963
963
  Add(...values: unknown[]): DataRow;
964
964
  Clear(): void;
@@ -1434,7 +1434,7 @@ export interface DataView$instance extends MarshalByValueComponent {
1434
1434
  readonly Count: int;
1435
1435
  readonly DataViewManager: DataViewManager | undefined;
1436
1436
  readonly IsInitialized: boolean;
1437
- readonly Item: DataRowView;
1437
+ readonly [recordIndex: number]: DataRowView;
1438
1438
  get RowFilter(): string | undefined;
1439
1439
  set RowFilter(value: string | undefined);
1440
1440
  RowStateFilter: DataViewRowState;
@@ -321,7 +321,7 @@ export type DbBatchCommand = DbBatchCommand$instance;
321
321
  export interface DbBatchCommandCollection$instance {
322
322
  readonly Count: int;
323
323
  readonly IsReadOnly: boolean;
324
- Item: DbBatchCommand;
324
+ [index: number]: DbBatchCommand;
325
325
  Add(item: DbBatchCommand): void;
326
326
  Clear(): void;
327
327
  Contains(item: DbBatchCommand): boolean;
@@ -378,7 +378,7 @@ export interface DbColumn$instance {
378
378
  IsLong: Nullable_1<System_Internal.Boolean>;
379
379
  IsReadOnly: Nullable_1<System_Internal.Boolean>;
380
380
  IsUnique: Nullable_1<System_Internal.Boolean>;
381
- readonly Item: unknown | undefined;
381
+ readonly [property: string]: unknown | undefined;
382
382
  NumericPrecision: Nullable_1<System_Internal.Int32>;
383
383
  NumericScale: Nullable_1<System_Internal.Int32>;
384
384
  get UdtAssemblyQualifiedName(): string | undefined;
@@ -554,7 +554,7 @@ export interface DbConnectionStringBuilder$instance {
554
554
  readonly Count: int;
555
555
  readonly IsFixedSize: boolean;
556
556
  readonly IsReadOnly: boolean;
557
- Item: unknown;
557
+ [keyword: string]: unknown;
558
558
  readonly Keys: ICollection;
559
559
  readonly Values: ICollection;
560
560
  Add(keyword: string, value: unknown): void;
@@ -46,7 +46,7 @@ export type INullable = INullable$instance;
46
46
 
47
47
  export interface SqlBinary$instance {
48
48
  readonly IsNull: boolean;
49
- readonly Item: byte;
49
+ readonly [index: number]: byte;
50
50
  readonly Length: int;
51
51
  readonly Value: byte[];
52
52
  CompareTo(value: unknown): int;
@@ -876,7 +876,7 @@ export type SqlAlreadyFilledException = SqlAlreadyFilledException$instance & __S
876
876
  export interface SqlBytes$instance {
877
877
  readonly Buffer: byte[] | undefined;
878
878
  readonly IsNull: boolean;
879
- Item: byte;
879
+ [offset: number]: byte;
880
880
  readonly Length: long;
881
881
  readonly MaxLength: long;
882
882
  readonly Storage: StorageState;
@@ -914,7 +914,7 @@ export type SqlBytes = SqlBytes$instance & __SqlBytes$views;
914
914
  export interface SqlChars$instance {
915
915
  readonly Buffer: char[] | undefined;
916
916
  readonly IsNull: boolean;
917
- Item: char;
917
+ [offset: number]: char;
918
918
  readonly Length: long;
919
919
  readonly MaxLength: long;
920
920
  readonly Storage: StorageState;
@@ -447,7 +447,7 @@ export type Debug_WriteIfInterpolatedStringHandler = Debug_WriteIfInterpolatedSt
447
447
  export interface TagList$instance {
448
448
  readonly Count: int;
449
449
  readonly IsReadOnly: boolean;
450
- Item: KeyValuePair_2<System_Internal.String, unknown>;
450
+ [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
451
451
  Add(key: string, value: unknown): void;
452
452
  Add(tag: KeyValuePair_2<System_Internal.String, unknown>): void;
453
453
  Clear(): void;
@@ -663,8 +663,7 @@ export type ActivitySourceOptions = ActivitySourceOptions$instance;
663
663
  export interface ActivityTagsCollection$instance {
664
664
  readonly Count: int;
665
665
  readonly IsReadOnly: boolean;
666
- get Item(): unknown | undefined;
667
- set Item(value: unknown | undefined);
666
+ [key: string]: unknown | undefined;
668
667
  readonly Keys: ICollection_1<System_Internal.String>;
669
668
  readonly Values: ICollection_1<unknown | undefined>;
670
669
  Add(key: string, value: unknown): void;
@@ -1296,7 +1295,7 @@ export type ProcessModule = ProcessModule$instance & __ProcessModule$views;
1296
1295
 
1297
1296
 
1298
1297
  export interface ProcessModuleCollection$instance extends ReadOnlyCollectionBase {
1299
- readonly Item: ProcessModule;
1298
+ readonly [index: number]: ProcessModule;
1300
1299
  Contains(module: ProcessModule): boolean;
1301
1300
  CopyTo(array: ClrArray, index: int): void;
1302
1301
  GetEnumerator(): IEnumerator;
@@ -1398,7 +1397,7 @@ export type ProcessThread = ProcessThread$instance & __ProcessThread$views;
1398
1397
 
1399
1398
 
1400
1399
  export interface ProcessThreadCollection$instance extends ReadOnlyCollectionBase {
1401
- readonly Item: ProcessThread;
1400
+ readonly [index: number]: ProcessThread;
1402
1401
  Add(thread: ProcessThread): int;
1403
1402
  Contains(thread: ProcessThread): boolean;
1404
1403
  CopyTo(array: ClrArray, index: int): void;
@@ -1446,7 +1446,7 @@ export type ServicePointManager = ServicePointManager$instance;
1446
1446
  export interface SocketAddress$instance {
1447
1447
  readonly Buffer: Memory_1<System_Internal.Byte>;
1448
1448
  readonly Family: AddressFamily;
1449
- Item: byte;
1449
+ [offset: number]: byte;
1450
1450
  Size: int;
1451
1451
  Equals(comparand: unknown): boolean;
1452
1452
  Equals(comparand: SocketAddress): boolean;
@@ -60,7 +60,7 @@ export type HeaderStringValues_Enumerator = HeaderStringValues_Enumerator$instan
60
60
 
61
61
  export interface HttpHeadersNonValidated$instance {
62
62
  readonly Count: int;
63
- readonly Item: HeaderStringValues;
63
+ readonly [headerName: string]: HeaderStringValues;
64
64
  Contains(headerName: string): boolean;
65
65
  GetEnumerator(): HttpHeadersNonValidated_Enumerator;
66
66
  TryGetValues(headerName: string, values: HeaderStringValues): boolean;
@@ -191,7 +191,7 @@ export type GatewayIPAddressInformation = GatewayIPAddressInformation$instance;
191
191
  export interface GatewayIPAddressInformationCollection$instance {
192
192
  readonly Count: int;
193
193
  readonly IsReadOnly: boolean;
194
- readonly Item: GatewayIPAddressInformation;
194
+ readonly [index: number]: GatewayIPAddressInformation;
195
195
  Add(address: GatewayIPAddressInformation): void;
196
196
  Clear(): void;
197
197
  Contains(address: GatewayIPAddressInformation): boolean;
@@ -295,7 +295,7 @@ export type IcmpV6Statistics = IcmpV6Statistics$instance;
295
295
  export interface IPAddressCollection$instance {
296
296
  readonly Count: int;
297
297
  readonly IsReadOnly: boolean;
298
- readonly Item: IPAddress;
298
+ readonly [index: number]: IPAddress;
299
299
  Add(address: IPAddress): void;
300
300
  Clear(): void;
301
301
  Contains(address: IPAddress): boolean;
@@ -334,7 +334,7 @@ export type IPAddressInformation = IPAddressInformation$instance;
334
334
  export interface IPAddressInformationCollection$instance {
335
335
  readonly Count: int;
336
336
  readonly IsReadOnly: boolean;
337
- readonly Item: IPAddressInformation;
337
+ readonly [index: number]: IPAddressInformation;
338
338
  Add(address: IPAddressInformation): void;
339
339
  Clear(): void;
340
340
  Contains(address: IPAddressInformation): boolean;
@@ -535,7 +535,7 @@ export type MulticastIPAddressInformation = MulticastIPAddressInformation$instan
535
535
  export interface MulticastIPAddressInformationCollection$instance {
536
536
  readonly Count: int;
537
537
  readonly IsReadOnly: boolean;
538
- readonly Item: MulticastIPAddressInformation;
538
+ readonly [index: number]: MulticastIPAddressInformation;
539
539
  Add(address: MulticastIPAddressInformation): void;
540
540
  Clear(): void;
541
541
  Contains(address: MulticastIPAddressInformation): boolean;
@@ -826,7 +826,7 @@ export type UnicastIPAddressInformation = UnicastIPAddressInformation$instance;
826
826
  export interface UnicastIPAddressInformationCollection$instance {
827
827
  readonly Count: int;
828
828
  readonly IsReadOnly: boolean;
829
- readonly Item: UnicastIPAddressInformation;
829
+ readonly [index: number]: UnicastIPAddressInformation;
830
830
  Add(address: UnicastIPAddressInformation): void;
831
831
  Clear(): void;
832
832
  Contains(address: UnicastIPAddressInformation): boolean;
@@ -765,7 +765,7 @@ export interface Quaternion$instance {
765
765
  Z: float;
766
766
  W: float;
767
767
  readonly IsIdentity: boolean;
768
- Item: float;
768
+ [index: number]: float;
769
769
  Equals(obj: unknown): boolean;
770
770
  Equals(other: Quaternion): boolean;
771
771
  GetHashCode(): int;
@@ -841,7 +841,7 @@ export type TotalOrderIeee754Comparer_1<T extends IFloatingPointIeee754_1<T>> =
841
841
 
842
842
 
843
843
  export interface Vector_1$instance<T> extends IAdditionOperators_3<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IBitwiseOperators_3<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IDivisionOperators_3<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IEqualityOperators_3<Vector_1<T>, Vector_1<T>, System_Internal.Boolean>, IMultiplyOperators_3<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IShiftOperators_3<Vector_1<T>, System_Internal.Int32, Vector_1<T>>, ISubtractionOperators_3<Vector_1<T>, Vector_1<T>, Vector_1<T>>, IUnaryNegationOperators_2<Vector_1<T>, Vector_1<T>>, IUnaryPlusOperators_2<Vector_1<T>, Vector_1<T>> {
844
- readonly Item: T;
844
+ readonly [index: number]: T;
845
845
  CopyTo(destination: T[]): void;
846
846
  CopyTo(destination: T[], startIndex: int): void;
847
847
  CopyTo(destination: Span_1<System_Internal.Byte>): void;
@@ -889,7 +889,7 @@ export type Vector_1<T> = Vector_1$instance<T> & __Vector_1$views<T>;
889
889
  export interface Vector2$instance {
890
890
  X: float;
891
891
  Y: float;
892
- Item: float;
892
+ [index: number]: float;
893
893
  CopyTo(array: float[]): void;
894
894
  CopyTo(array: float[], index: int): void;
895
895
  CopyTo(destination: Span_1<System_Internal.Single>): void;
@@ -1048,7 +1048,7 @@ export interface Vector3$instance {
1048
1048
  X: float;
1049
1049
  Y: float;
1050
1050
  Z: float;
1051
- Item: float;
1051
+ [index: number]: float;
1052
1052
  CopyTo(array: float[]): void;
1053
1053
  CopyTo(array: float[], index: int): void;
1054
1054
  CopyTo(destination: Span_1<System_Internal.Single>): void;
@@ -1209,7 +1209,7 @@ export interface Vector4$instance {
1209
1209
  Y: float;
1210
1210
  Z: float;
1211
1211
  W: float;
1212
- Item: float;
1212
+ [index: number]: float;
1213
1213
  CopyTo(array: float[]): void;
1214
1214
  CopyTo(array: float[], index: int): void;
1215
1215
  CopyTo(destination: Span_1<System_Internal.Single>): void;
@@ -490,7 +490,7 @@ export const InterfaceMapping: {
490
490
  export type InterfaceMapping = InterfaceMapping$instance;
491
491
 
492
492
  export interface ParameterModifier$instance {
493
- Item: boolean;
493
+ [index: number]: boolean;
494
494
  }
495
495
 
496
496
 
@@ -1758,7 +1758,7 @@ export type GenericParameterConstraintHandle = GenericParameterConstraintHandle$
1758
1758
 
1759
1759
  export interface GenericParameterConstraintHandleCollection$instance {
1760
1760
  readonly Count: int;
1761
- readonly Item: GenericParameterConstraintHandle;
1761
+ readonly [index: number]: GenericParameterConstraintHandle;
1762
1762
  GetEnumerator(): GenericParameterConstraintHandleCollection_Enumerator;
1763
1763
  }
1764
1764
 
@@ -1822,7 +1822,7 @@ export type GenericParameterHandle = GenericParameterHandle$instance & __Generic
1822
1822
 
1823
1823
  export interface GenericParameterHandleCollection$instance {
1824
1824
  readonly Count: int;
1825
- readonly Item: GenericParameterHandle;
1825
+ readonly [index: number]: GenericParameterHandle;
1826
1826
  GetEnumerator(): GenericParameterHandleCollection_Enumerator;
1827
1827
  }
1828
1828
 
@@ -104,8 +104,7 @@ export type INotifyCompletion = INotifyCompletion$instance;
104
104
 
105
105
  export interface IRuntimeVariables$instance {
106
106
  readonly Count: int;
107
- get Item(): unknown | undefined;
108
- set Item(value: unknown | undefined);
107
+ [index: number]: unknown | undefined;
109
108
  }
110
109
 
111
110
 
@@ -121,7 +120,7 @@ export type IStrongBox = IStrongBox$instance;
121
120
 
122
121
  export interface ITuple$instance {
123
122
  readonly Length: int;
124
- readonly Item: unknown | undefined;
123
+ readonly [index: number]: unknown | undefined;
125
124
  }
126
125
 
127
126
 
@@ -1560,7 +1559,7 @@ export type PreserveBaseOverridesAttribute = PreserveBaseOverridesAttribute$inst
1560
1559
  export interface ReadOnlyCollectionBuilder_1$instance<T> {
1561
1560
  Capacity: int;
1562
1561
  readonly Count: int;
1563
- Item: T;
1562
+ [index: number]: T;
1564
1563
  Add(item: T): void;
1565
1564
  Clear(): void;
1566
1565
  Contains(item: T): boolean;
@@ -15,7 +15,7 @@ import * as System_Internal from "../../System/internal/index.js";
15
15
  import type { Boolean as ClrBoolean, Byte, Double, IEquatable_1, Int16, Int32, Int64, IntPtr, MidpointRounding, Object as ClrObject, ReadOnlySpan_1, SByte, Single, Span_1, String as ClrString, Type, UInt16, UInt32, UInt64, UIntPtr, ValueTuple_2, ValueType, Void } from "../../System/internal/index.js";
16
16
 
17
17
  export interface Vector128_1$instance<T> extends IAdditionOperators_3<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, IBitwiseOperators_3<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, IDivisionOperators_3<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, IEqualityOperators_3<Vector128_1<T>, Vector128_1<T>, System_Internal.Boolean>, IMultiplyOperators_3<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, IShiftOperators_3<Vector128_1<T>, System_Internal.Int32, Vector128_1<T>>, ISubtractionOperators_3<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, IUnaryNegationOperators_2<Vector128_1<T>, Vector128_1<T>>, IUnaryPlusOperators_2<Vector128_1<T>, Vector128_1<T>> {
18
- readonly Item: T;
18
+ readonly [index: number]: T;
19
19
  Equals(obj: unknown): boolean;
20
20
  Equals(other: Vector128_1<T>): boolean;
21
21
  GetHashCode(): int;
@@ -47,7 +47,7 @@ export type Vector128_1<T> = Vector128_1$instance<T> & __Vector128_1$views<T>;
47
47
 
48
48
 
49
49
  export interface Vector256_1$instance<T> extends IAdditionOperators_3<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, IBitwiseOperators_3<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, IDivisionOperators_3<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, IEqualityOperators_3<Vector256_1<T>, Vector256_1<T>, System_Internal.Boolean>, IMultiplyOperators_3<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, IShiftOperators_3<Vector256_1<T>, System_Internal.Int32, Vector256_1<T>>, ISubtractionOperators_3<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, IUnaryNegationOperators_2<Vector256_1<T>, Vector256_1<T>>, IUnaryPlusOperators_2<Vector256_1<T>, Vector256_1<T>> {
50
- readonly Item: T;
50
+ readonly [index: number]: T;
51
51
  Equals(obj: unknown): boolean;
52
52
  Equals(other: Vector256_1<T>): boolean;
53
53
  GetHashCode(): int;
@@ -79,7 +79,7 @@ export type Vector256_1<T> = Vector256_1$instance<T> & __Vector256_1$views<T>;
79
79
 
80
80
 
81
81
  export interface Vector512_1$instance<T> extends IAdditionOperators_3<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, IBitwiseOperators_3<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, IDivisionOperators_3<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, IEqualityOperators_3<Vector512_1<T>, Vector512_1<T>, System_Internal.Boolean>, IMultiplyOperators_3<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, IShiftOperators_3<Vector512_1<T>, System_Internal.Int32, Vector512_1<T>>, ISubtractionOperators_3<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, IUnaryNegationOperators_2<Vector512_1<T>, Vector512_1<T>>, IUnaryPlusOperators_2<Vector512_1<T>, Vector512_1<T>> {
82
- readonly Item: T;
82
+ readonly [index: number]: T;
83
83
  Equals(obj: unknown): boolean;
84
84
  Equals(other: Vector512_1<T>): boolean;
85
85
  GetHashCode(): int;
@@ -111,7 +111,7 @@ export type Vector512_1<T> = Vector512_1$instance<T> & __Vector512_1$views<T>;
111
111
 
112
112
 
113
113
  export interface Vector64_1$instance<T> extends IAdditionOperators_3<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, IBitwiseOperators_3<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, IDivisionOperators_3<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, IEqualityOperators_3<Vector64_1<T>, Vector64_1<T>, System_Internal.Boolean>, IMultiplyOperators_3<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, IShiftOperators_3<Vector64_1<T>, System_Internal.Int32, Vector64_1<T>>, ISubtractionOperators_3<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, IUnaryNegationOperators_2<Vector64_1<T>, Vector64_1<T>>, IUnaryPlusOperators_2<Vector64_1<T>, Vector64_1<T>> {
114
- readonly Item: T;
114
+ readonly [index: number]: T;
115
115
  Equals(obj: unknown): boolean;
116
116
  Equals(other: Vector64_1<T>): boolean;
117
117
  GetHashCode(): int;
@@ -338,7 +338,7 @@ export const AuthorizationRule: (abstract new(identity: IdentityReference, acces
338
338
  export type AuthorizationRule = AuthorizationRule$instance;
339
339
 
340
340
  export interface AuthorizationRuleCollection$instance extends ReadOnlyCollectionBase {
341
- readonly Item: AuthorizationRule | undefined;
341
+ readonly [index: number]: AuthorizationRule | undefined;
342
342
  AddRule(rule: AuthorizationRule): void;
343
343
  CopyTo(array: ClrArray, index: int): void;
344
344
  GetEnumerator(): IEnumerator;
@@ -380,7 +380,7 @@ export interface CommonAcl$instance extends GenericAcl$instance {
380
380
  readonly IsCanonical: boolean;
381
381
  readonly IsContainer: boolean;
382
382
  readonly IsDS: boolean;
383
- Item: GenericAce;
383
+ [index: number]: GenericAce;
384
384
  readonly Revision: byte;
385
385
  CopyTo(array: GenericAce[], index: int): void;
386
386
  CopyTo(array: ClrArray, index: int): void;
@@ -693,7 +693,7 @@ export interface GenericAcl$instance {
693
693
  readonly BinaryLength: int;
694
694
  readonly Count: int;
695
695
  readonly IsSynchronized: boolean;
696
- Item: GenericAce;
696
+ [index: number]: GenericAce;
697
697
  readonly Revision: byte;
698
698
  readonly SyncRoot: unknown;
699
699
  CopyTo(array: GenericAce[], index: int): void;
@@ -966,7 +966,7 @@ export type QualifiedAce = QualifiedAce$instance;
966
966
  export interface RawAcl$instance extends GenericAcl$instance {
967
967
  readonly BinaryLength: int;
968
968
  readonly Count: int;
969
- Item: GenericAce;
969
+ [index: number]: GenericAce;
970
970
  readonly Revision: byte;
971
971
  CopyTo(array: GenericAce[], index: int): void;
972
972
  CopyTo(array: ClrArray, index: int): void;
@@ -599,7 +599,7 @@ export type AsnEncodedData = AsnEncodedData$instance;
599
599
  export interface AsnEncodedDataCollection$instance {
600
600
  readonly Count: int;
601
601
  readonly IsSynchronized: boolean;
602
- readonly Item: AsnEncodedData;
602
+ readonly [index: number]: AsnEncodedData;
603
603
  readonly SyncRoot: unknown;
604
604
  Add(asnEncodedData: AsnEncodedData): int;
605
605
  CopyTo(array: AsnEncodedData[], index: int): void;
@@ -797,7 +797,7 @@ export type X509Certificate2Enumerator = X509Certificate2Enumerator$instance & _
797
797
 
798
798
 
799
799
  export interface X509CertificateCollection$instance extends CollectionBase {
800
- Item: X509Certificate | X509Certificate2;
800
+ [index: number]: X509Certificate | X509Certificate2;
801
801
  Add(value: unknown): int;
802
802
  AddRange(value: X509Certificate[]): void;
803
803
  AddRange(value: X509CertificateCollection): void;
@@ -893,7 +893,7 @@ export type X509ChainElement = X509ChainElement$instance;
893
893
  export interface X509ChainElementCollection$instance {
894
894
  readonly Count: int;
895
895
  readonly IsSynchronized: boolean;
896
- readonly Item: X509ChainElement;
896
+ readonly [index: number]: X509ChainElement;
897
897
  readonly SyncRoot: unknown;
898
898
  CopyTo(array: X509ChainElement[], index: int): void;
899
899
  GetEnumerator(): X509ChainElementEnumerator;
@@ -270,7 +270,7 @@ export type IdentityReference = IdentityReference$instance;
270
270
 
271
271
  export interface IdentityReferenceCollection$instance {
272
272
  readonly Count: int;
273
- Item: IdentityReference;
273
+ [index: number]: IdentityReference;
274
274
  Add(identity: IdentityReference): void;
275
275
  Clear(): void;
276
276
  Contains(identity: IdentityReference): boolean;
@@ -701,7 +701,7 @@ export type EncodingProvider = EncodingProvider$instance;
701
701
 
702
702
  export interface StringBuilder$instance {
703
703
  Capacity: int;
704
- Chars: char;
704
+ [index: number]: char;
705
705
  Length: int;
706
706
  readonly MaxCapacity: int;
707
707
  Append(value: char, repeatCount: int): StringBuilder;
@@ -86,7 +86,7 @@ export const JsonDocumentOptions: {
86
86
  export type JsonDocumentOptions = JsonDocumentOptions$instance;
87
87
 
88
88
  export interface JsonElement$instance {
89
- readonly Item: JsonElement;
89
+ readonly [index: number]: JsonElement;
90
90
  readonly ValueKind: JsonValueKind;
91
91
  Clone(): JsonElement;
92
92
  EnumerateArray(): JsonElement_ArrayEnumerator;
@@ -148,7 +148,7 @@ export interface CaptureCollection$instance {
148
148
  readonly Count: int;
149
149
  readonly IsReadOnly: boolean;
150
150
  readonly IsSynchronized: boolean;
151
- readonly Item: Capture;
151
+ readonly [i: number]: Capture;
152
152
  readonly SyncRoot: unknown;
153
153
  CopyTo(array: ClrArray, arrayIndex: int): void;
154
154
  CopyTo(array: Capture[], arrayIndex: int): void;
@@ -259,7 +259,7 @@ export interface MatchCollection$instance {
259
259
  readonly Count: int;
260
260
  readonly IsReadOnly: boolean;
261
261
  readonly IsSynchronized: boolean;
262
- readonly Item: Match;
262
+ readonly [i: number]: Match;
263
263
  readonly SyncRoot: unknown;
264
264
  CopyTo(array: ClrArray, arrayIndex: int): void;
265
265
  CopyTo(array: Match[], arrayIndex: int): void;
@@ -94,6 +94,7 @@ export interface ValueTask$instance {
94
94
  GetAwaiter(): ValueTaskAwaiter;
95
95
  GetHashCode(): int;
96
96
  Preserve(): ValueTask;
97
+ then<TResult1 = void, TResult2 = never>(onfulfilled?: ((value: void) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): PromiseLike<TResult1 | TResult2>;
97
98
  }
98
99
 
99
100
 
@@ -133,6 +134,7 @@ export interface ValueTask_1$instance<TResult> {
133
134
  GetHashCode(): int;
134
135
  Preserve(): ValueTask_1<TResult>;
135
136
  ToString(): string | undefined;
137
+ then<TResult1 = TResult, TResult2 = never>(onfulfilled?: ((value: TResult) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): PromiseLike<TResult1 | TResult2>;
136
138
  }
137
139
 
138
140
 
@@ -252,6 +254,7 @@ export interface Task$instance {
252
254
  WaitAsync(timeout: TimeSpan, timeProvider: TimeProvider): Task;
253
255
  WaitAsync(timeout: TimeSpan, cancellationToken: CancellationToken): Task;
254
256
  WaitAsync(timeout: TimeSpan, timeProvider: TimeProvider, cancellationToken: CancellationToken): Task;
257
+ then<TResult1 = void, TResult2 = never>(onfulfilled?: ((value: void) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): PromiseLike<TResult1 | TResult2>;
255
258
  }
256
259
 
257
260
 
@@ -375,6 +378,7 @@ export interface Task_1$instance<TResult> extends Task$instance {
375
378
  WaitAsync(timeout: TimeSpan, timeProvider: TimeProvider): Task;
376
379
  WaitAsync(timeout: TimeSpan, cancellationToken: CancellationToken): Task;
377
380
  WaitAsync(timeout: TimeSpan, timeProvider: TimeProvider, cancellationToken: CancellationToken): Task;
381
+ then<TResult1 = TResult, TResult2 = never>(onfulfilled?: ((value: TResult) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): PromiseLike<TResult1 | TResult2>;
378
382
  }
379
383
 
380
384
 
@@ -1439,7 +1439,7 @@ export type XmlNodeChangedEventArgs = XmlNodeChangedEventArgs$instance;
1439
1439
 
1440
1440
  export interface XmlNodeList$instance {
1441
1441
  readonly Count: int;
1442
- readonly ItemOf: XmlNode | undefined;
1442
+ readonly [i: number]: XmlNode | undefined;
1443
1443
  GetEnumerator(): IEnumerator;
1444
1444
  Item(index: int): XmlNode | undefined;
1445
1445
  PrivateDisposeNodeList(): void;
@@ -422,7 +422,7 @@ export type XmlSchemaChoice = XmlSchemaChoice$instance;
422
422
 
423
423
  export interface XmlSchemaCollection$instance {
424
424
  readonly Count: int;
425
- readonly Item: XmlSchema | undefined;
425
+ readonly [ns: string]: XmlSchema | undefined;
426
426
  readonly NameTable: XmlNameTable;
427
427
  Add(ns: string, uri: string): XmlSchema | undefined;
428
428
  Add(ns: string, reader: XmlReader): XmlSchema | undefined;
@@ -1016,7 +1016,7 @@ export const XmlSchemaObject: (abstract new() => XmlSchemaObject) & {
1016
1016
  export type XmlSchemaObject = XmlSchemaObject$instance;
1017
1017
 
1018
1018
  export interface XmlSchemaObjectCollection$instance extends CollectionBase {
1019
- Item: XmlSchemaObject;
1019
+ [index: number]: XmlSchemaObject;
1020
1020
  Add(value: unknown): int;
1021
1021
  Clear(): void;
1022
1022
  Contains(value: unknown): boolean;
@@ -362,7 +362,7 @@ export const XmlAnyElementAttribute: {
362
362
  export type XmlAnyElementAttribute = XmlAnyElementAttribute$instance;
363
363
 
364
364
  export interface XmlAnyElementAttributes$instance extends CollectionBase {
365
- Item: XmlAnyElementAttribute;
365
+ [index: number]: XmlAnyElementAttribute;
366
366
  Add(value: unknown): int;
367
367
  Clear(): void;
368
368
  Contains(value: unknown): boolean;
@@ -431,7 +431,7 @@ export const XmlArrayItemAttribute: {
431
431
  export type XmlArrayItemAttribute = XmlArrayItemAttribute$instance;
432
432
 
433
433
  export interface XmlArrayItemAttributes$instance extends CollectionBase {
434
- Item: XmlArrayItemAttribute;
434
+ [index: number]: XmlArrayItemAttribute;
435
435
  Add(value: unknown): int;
436
436
  Clear(): void;
437
437
  Contains(value: unknown): boolean;
@@ -580,7 +580,7 @@ export const XmlElementAttribute: {
580
580
  export type XmlElementAttribute = XmlElementAttribute$instance;
581
581
 
582
582
  export interface XmlElementAttributes$instance extends CollectionBase {
583
- Item: XmlElementAttribute;
583
+ [index: number]: XmlElementAttribute;
584
584
  Add(value: unknown): int;
585
585
  Clear(): void;
586
586
  Contains(value: unknown): boolean;
@@ -695,7 +695,7 @@ export type XmlMemberMapping = XmlMemberMapping$instance;
695
695
 
696
696
  export interface XmlMembersMapping$instance extends XmlMapping {
697
697
  readonly Count: int;
698
- readonly Item: XmlMemberMapping;
698
+ readonly [index: number]: XmlMemberMapping;
699
699
  readonly TypeName: string | undefined;
700
700
  readonly TypeNamespace: string | undefined;
701
701
  }
@@ -835,7 +835,7 @@ export type XmlQueryRuntime = XmlQueryRuntime$instance;
835
835
 
836
836
  export interface XmlQuerySequence_1$instance<T> {
837
837
  readonly Count: int;
838
- Item: T;
838
+ [index: number]: T;
839
839
  Add(value: T): void;
840
840
  Clear(): void;
841
841
  Contains(value: T): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsonic/dotnet",
3
- "version": "10.0.3",
3
+ "version": "10.0.4",
4
4
  "description": "TypeScript type definitions for .NET 10 BCL (Base Class Library)",
5
5
  "type": "module",
6
6
  "keywords": [