@tsonic/dotnet 10.0.14 → 10.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +2 -0
- package/System/internal/index.d.ts +6 -0
- package/System.CodeDom.Compiler/bindings.json +6 -6
- package/System.Collections/internal/index.d.ts +1 -0
- package/System.Collections.Generic/internal/index.d.ts +22 -0
- package/System.Collections.ObjectModel/internal/index.d.ts +6 -0
- package/System.ComponentModel/internal/index.d.ts +1 -0
- package/System.ComponentModel.Design/internal/index.d.ts +5 -0
- package/System.Data/internal/index.d.ts +7 -0
- package/System.Data.Common/internal/index.d.ts +10 -0
- package/System.Diagnostics/internal/index.d.ts +3 -0
- package/System.Dynamic/bindings.json +36 -36
- package/System.IO/bindings.json +18 -18
- package/System.IO/internal/index.d.ts +2 -0
- package/System.IO.Compression/bindings.json +12 -12
- package/System.IO.IsolatedStorage/bindings.json +9 -9
- package/System.IO.Pipes/bindings.json +3 -3
- package/System.Linq/internal/index.d.ts +1 -0
- package/System.Net/internal/index.d.ts +13 -0
- package/System.Net.Http/bindings.json +9 -9
- package/System.Net.Http/internal/index.d.ts +8 -0
- package/System.Net.Mail/internal/index.d.ts +10 -0
- package/System.Net.Quic/bindings.json +6 -6
- package/System.Net.Quic/internal/index.d.ts +3 -0
- package/System.Net.Security/bindings.json +12 -12
- package/System.Net.Sockets/bindings.json +3 -3
- package/System.Net.Sockets/internal/index.d.ts +1 -0
- package/System.Net.WebSockets/bindings.json +12 -12
- package/System.Reflection/internal/index.d.ts +14 -0
- package/System.Reflection.Metadata/internal/index.d.ts +3 -0
- package/System.Runtime.Serialization/internal/index.d.ts +1 -0
- package/System.Security.AccessControl/internal/index.d.ts +1 -0
- package/System.Security.Cryptography/bindings.json +126 -126
- package/System.Security.Cryptography/internal/index.d.ts +40 -0
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +14 -0
- package/System.Security.Principal/internal/index.d.ts +1 -0
- package/System.Text/bindings.json +51 -51
- package/System.Text/internal/index.d.ts +1 -0
- package/System.Threading.Tasks/bindings.json +400 -0
- package/System.Threading.Tasks/internal/index.d.ts +39 -0
- package/System.Xml/internal/index.d.ts +21 -0
- package/System.Xml.Linq/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +7 -0
- package/System.Xml.Serialization/internal/index.d.ts +21 -0
- package/package.json +2 -2
|
@@ -408,7 +408,12 @@ export interface XmlAnyElementAttributes$instance extends CollectionBase {
|
|
|
408
408
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
409
409
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
410
410
|
|
|
411
|
+
Add(attribute: XmlAnyElementAttribute): int;
|
|
412
|
+
Contains(attribute: XmlAnyElementAttribute): boolean;
|
|
413
|
+
CopyTo(array: XmlAnyElementAttribute[], index: int): void;
|
|
411
414
|
IndexOf(attribute: XmlAnyElementAttribute): int;
|
|
415
|
+
Insert(index: int, attribute: XmlAnyElementAttribute): void;
|
|
416
|
+
Remove(attribute: XmlAnyElementAttribute): void;
|
|
412
417
|
}
|
|
413
418
|
|
|
414
419
|
|
|
@@ -478,7 +483,12 @@ export interface XmlArrayItemAttributes$instance extends CollectionBase {
|
|
|
478
483
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
479
484
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
480
485
|
|
|
486
|
+
Add(attribute: XmlArrayItemAttribute): int;
|
|
487
|
+
Contains(attribute: XmlArrayItemAttribute): boolean;
|
|
488
|
+
CopyTo(array: XmlArrayItemAttribute[], index: int): void;
|
|
481
489
|
IndexOf(attribute: XmlArrayItemAttribute): int;
|
|
490
|
+
Insert(index: int, attribute: XmlArrayItemAttribute): void;
|
|
491
|
+
Remove(attribute: XmlArrayItemAttribute): void;
|
|
482
492
|
}
|
|
483
493
|
|
|
484
494
|
|
|
@@ -636,7 +646,12 @@ export interface XmlElementAttributes$instance extends CollectionBase {
|
|
|
636
646
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
637
647
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
638
648
|
|
|
649
|
+
Add(attribute: XmlElementAttribute): int;
|
|
650
|
+
Contains(attribute: XmlElementAttribute): boolean;
|
|
651
|
+
CopyTo(array: XmlElementAttribute[], index: int): void;
|
|
639
652
|
IndexOf(attribute: XmlElementAttribute): int;
|
|
653
|
+
Insert(index: int, attribute: XmlElementAttribute): void;
|
|
654
|
+
Remove(attribute: XmlElementAttribute): void;
|
|
640
655
|
}
|
|
641
656
|
|
|
642
657
|
|
|
@@ -960,19 +975,25 @@ export interface XmlSchemas$instance extends CollectionBase {
|
|
|
960
975
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
961
976
|
|
|
962
977
|
readonly IsCompiled: boolean;
|
|
978
|
+
Add(schema: XmlSchema): int;
|
|
979
|
+
Add(schema: XmlSchema, baseUri: Uri): int;
|
|
963
980
|
Add(schemas: XmlSchemas): void;
|
|
964
981
|
AddReference(schema: XmlSchema): void;
|
|
965
982
|
Compile(handler: ValidationEventHandler, fullCompile: boolean): void;
|
|
966
983
|
Contains(schema: XmlSchema): boolean;
|
|
984
|
+
Contains(targetNamespace: string): boolean;
|
|
985
|
+
CopyTo(array: XmlSchema[], index: int): void;
|
|
967
986
|
Find(name: XmlQualifiedName, type: Type): unknown | undefined;
|
|
968
987
|
get_Item(index: int): XmlSchema;
|
|
969
988
|
get_Item(ns: string): XmlSchema | undefined;
|
|
970
989
|
GetSchemas(ns: string): IList;
|
|
971
990
|
IndexOf(schema: XmlSchema): int;
|
|
991
|
+
Insert(index: int, schema: XmlSchema): void;
|
|
972
992
|
OnClear(): void;
|
|
973
993
|
OnInsert(index: int, value: unknown): void;
|
|
974
994
|
OnRemove(index: int, value: unknown): void;
|
|
975
995
|
OnSet(index: int, oldValue: unknown, newValue: unknown): void;
|
|
996
|
+
Remove(schema: XmlSchema): void;
|
|
976
997
|
set_Item(index: int, value: XmlSchema): void;
|
|
977
998
|
}
|
|
978
999
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/dotnet",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.16",
|
|
4
4
|
"description": "TypeScript type definitions for .NET 10 BCL (Base Class Library)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
"url": "https://github.com/tsoniclang/dotnet.git"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"@tsonic/core": "10.0.
|
|
21
|
+
"@tsonic/core": "10.0.16"
|
|
22
22
|
}
|
|
23
23
|
}
|