@tsonic/nodejs 10.0.26 → 10.0.27
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/README.md +28 -26
- package/index/bindings.json +117 -117
- package/index/internal/index.d.ts +1 -1
- package/nodejs.Http/bindings.json +18 -18
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,31 +1,46 @@
|
|
|
1
1
|
# @tsonic/nodejs
|
|
2
2
|
|
|
3
|
-
Node-style APIs for **Tsonic
|
|
3
|
+
Node-style APIs for **Tsonic**.
|
|
4
|
+
|
|
5
|
+
This package is part of Tsonic: https://tsonic.org.
|
|
4
6
|
|
|
5
7
|
Use `@tsonic/nodejs` when you want Node-like modules (`fs`, `path`, `events`, `crypto`, `process`, `http`, …) while still compiling to a native binary with `tsonic`.
|
|
6
8
|
|
|
7
|
-
##
|
|
9
|
+
## Prerequisites
|
|
8
10
|
|
|
9
|
-
|
|
11
|
+
- Install the .NET 10 SDK (required by Tsonic): https://dotnet.microsoft.com/download
|
|
12
|
+
- Verify: `dotnet --version`
|
|
13
|
+
|
|
14
|
+
## Quick Start
|
|
10
15
|
|
|
11
16
|
```bash
|
|
12
17
|
mkdir my-app && cd my-app
|
|
13
|
-
tsonic init
|
|
14
|
-
tsonic add npm @tsonic/nodejs
|
|
18
|
+
npx --yes tsonic@latest init
|
|
19
|
+
npx --yes tsonic@latest add npm @tsonic/nodejs
|
|
20
|
+
|
|
21
|
+
# Replace the default App.ts with a Node.js-style example
|
|
22
|
+
cat > packages/my-app/src/App.ts <<'EOF'
|
|
23
|
+
import { console, path } from "@tsonic/nodejs/index.js";
|
|
24
|
+
|
|
25
|
+
export function main(): void {
|
|
26
|
+
console.log(path.posix.join("a", "b", "c"));
|
|
27
|
+
}
|
|
28
|
+
EOF
|
|
29
|
+
|
|
15
30
|
npm run dev
|
|
16
31
|
```
|
|
17
32
|
|
|
18
|
-
|
|
33
|
+
## Existing project
|
|
19
34
|
|
|
20
35
|
```bash
|
|
21
|
-
tsonic add npm @tsonic/nodejs
|
|
36
|
+
npx --yes tsonic@latest add npm @tsonic/nodejs
|
|
22
37
|
```
|
|
23
38
|
|
|
24
39
|
## Versioning
|
|
25
40
|
|
|
26
|
-
This repo is versioned by
|
|
41
|
+
This repo is versioned by runtime major:
|
|
27
42
|
|
|
28
|
-
-
|
|
43
|
+
- `10` → `versions/10/` → npm: `@tsonic/nodejs@10.x`
|
|
29
44
|
|
|
30
45
|
When publishing, run: `npm publish versions/10 --access public`
|
|
31
46
|
|
|
@@ -108,7 +123,9 @@ Node’s built-in specifiers like `node:fs` are **not** supported here.
|
|
|
108
123
|
|
|
109
124
|
## Documentation
|
|
110
125
|
|
|
111
|
-
-
|
|
126
|
+
- [docs/getting-started.md](docs/getting-started.md)
|
|
127
|
+
- [docs/imports.md](docs/imports.md)
|
|
128
|
+
- Module docs: [fs](docs/modules/fs.md), [path](docs/modules/path.md), [crypto](docs/modules/crypto.md), [http](docs/modules/http.md), [events](docs/modules/events.md), [process](docs/modules/process.md)
|
|
112
129
|
- https://tsonic.org/nodejs/
|
|
113
130
|
|
|
114
131
|
## Naming Conventions
|
|
@@ -117,22 +134,7 @@ Node’s built-in specifiers like `node:fs` are **not** supported here.
|
|
|
117
134
|
|
|
118
135
|
## Development
|
|
119
136
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
To regenerate TypeScript declarations:
|
|
123
|
-
|
|
124
|
-
```bash
|
|
125
|
-
./__build/scripts/generate.sh
|
|
126
|
-
```
|
|
127
|
-
|
|
128
|
-
**Prerequisites:**
|
|
129
|
-
- .NET 10 SDK installed
|
|
130
|
-
- `tsbindgen` repository at `../tsbindgen`
|
|
131
|
-
- `nodejs-clr` repository at `../nodejs-clr` (built with `dotnet build -c Release`)
|
|
132
|
-
|
|
133
|
-
**Environment variables:**
|
|
134
|
-
- `DOTNET_VERSION` - .NET runtime version (default: `10.0.0`)
|
|
135
|
-
- `DOTNET_HOME` - .NET installation directory (default: `$HOME/.dotnet`)
|
|
137
|
+
See `__build/` for regeneration scripts.
|
|
136
138
|
|
|
137
139
|
## License
|
|
138
140
|
|
package/index/bindings.json
CHANGED
|
@@ -6722,11 +6722,11 @@
|
|
|
6722
6722
|
},
|
|
6723
6723
|
"methods": [
|
|
6724
6724
|
{
|
|
6725
|
-
"stableId": "nodejs:nodejs.DnsPromises::lookup(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress,nodejs,Version=1.0.
|
|
6725
|
+
"stableId": "nodejs:nodejs.DnsPromises::lookup(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6726
6726
|
"clrName": "lookup",
|
|
6727
6727
|
"metadataToken": 100664017,
|
|
6728
|
-
"canonicalSignature": "(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress,nodejs,Version=1.0.
|
|
6729
|
-
"normalizedSignature": "lookup|(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress,nodejs,Version=1.0.
|
|
6728
|
+
"canonicalSignature": "(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6729
|
+
"normalizedSignature": "lookup|(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
6730
6730
|
"emitScope": "ClassSurface",
|
|
6731
6731
|
"provenance": "Original",
|
|
6732
6732
|
"arity": 0,
|
|
@@ -6742,11 +6742,11 @@
|
|
|
6742
6742
|
"isExtensionMethod": false
|
|
6743
6743
|
},
|
|
6744
6744
|
{
|
|
6745
|
-
"stableId": "nodejs:nodejs.DnsPromises::lookupAll(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress[],nodejs,Version=1.0.
|
|
6745
|
+
"stableId": "nodejs:nodejs.DnsPromises::lookupAll(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6746
6746
|
"clrName": "lookupAll",
|
|
6747
6747
|
"metadataToken": 100664018,
|
|
6748
|
-
"canonicalSignature": "(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress[],nodejs,Version=1.0.
|
|
6749
|
-
"normalizedSignature": "lookupAll|(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress[],nodejs,Version=1.0.
|
|
6748
|
+
"canonicalSignature": "(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6749
|
+
"normalizedSignature": "lookupAll|(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
6750
6750
|
"emitScope": "ClassSurface",
|
|
6751
6751
|
"provenance": "Original",
|
|
6752
6752
|
"arity": 0,
|
|
@@ -6762,11 +6762,11 @@
|
|
|
6762
6762
|
"isExtensionMethod": false
|
|
6763
6763
|
},
|
|
6764
6764
|
{
|
|
6765
|
-
"stableId": "nodejs:nodejs.DnsPromises::lookupService(System.String,System.Int32):System.Threading.Tasks.Task_1[[nodejs.LookupServiceResult,nodejs,Version=1.0.
|
|
6765
|
+
"stableId": "nodejs:nodejs.DnsPromises::lookupService(System.String,System.Int32):System.Threading.Tasks.Task_1[[nodejs.LookupServiceResult,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6766
6766
|
"clrName": "lookupService",
|
|
6767
6767
|
"metadataToken": 100664019,
|
|
6768
|
-
"canonicalSignature": "(System.String,System.Int32):System.Threading.Tasks.Task_1[[nodejs.LookupServiceResult,nodejs,Version=1.0.
|
|
6769
|
-
"normalizedSignature": "lookupService|(System.String,System.Int32):System.Threading.Tasks.Task_1[[nodejs.LookupServiceResult,nodejs,Version=1.0.
|
|
6768
|
+
"canonicalSignature": "(System.String,System.Int32):System.Threading.Tasks.Task_1[[nodejs.LookupServiceResult,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6769
|
+
"normalizedSignature": "lookupService|(System.String,System.Int32):System.Threading.Tasks.Task_1[[nodejs.LookupServiceResult,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
6770
6770
|
"emitScope": "ClassSurface",
|
|
6771
6771
|
"provenance": "Original",
|
|
6772
6772
|
"arity": 0,
|
|
@@ -6922,11 +6922,11 @@
|
|
|
6922
6922
|
"isExtensionMethod": false
|
|
6923
6923
|
},
|
|
6924
6924
|
{
|
|
6925
|
-
"stableId": "nodejs:nodejs.DnsPromises::resolveCaa(System.String):System.Threading.Tasks.Task_1[[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
6925
|
+
"stableId": "nodejs:nodejs.DnsPromises::resolveCaa(System.String):System.Threading.Tasks.Task_1[[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6926
6926
|
"clrName": "resolveCaa",
|
|
6927
6927
|
"metadataToken": 100664027,
|
|
6928
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
6929
|
-
"normalizedSignature": "resolveCaa|(System.String):System.Threading.Tasks.Task_1[[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
6928
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6929
|
+
"normalizedSignature": "resolveCaa|(System.String):System.Threading.Tasks.Task_1[[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
6930
6930
|
"emitScope": "ClassSurface",
|
|
6931
6931
|
"provenance": "Original",
|
|
6932
6932
|
"arity": 0,
|
|
@@ -6942,11 +6942,11 @@
|
|
|
6942
6942
|
"isExtensionMethod": false
|
|
6943
6943
|
},
|
|
6944
6944
|
{
|
|
6945
|
-
"stableId": "nodejs:nodejs.DnsPromises::resolveMx(System.String):System.Threading.Tasks.Task_1[[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
6945
|
+
"stableId": "nodejs:nodejs.DnsPromises::resolveMx(System.String):System.Threading.Tasks.Task_1[[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6946
6946
|
"clrName": "resolveMx",
|
|
6947
6947
|
"metadataToken": 100664028,
|
|
6948
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
6949
|
-
"normalizedSignature": "resolveMx|(System.String):System.Threading.Tasks.Task_1[[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
6948
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6949
|
+
"normalizedSignature": "resolveMx|(System.String):System.Threading.Tasks.Task_1[[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
6950
6950
|
"emitScope": "ClassSurface",
|
|
6951
6951
|
"provenance": "Original",
|
|
6952
6952
|
"arity": 0,
|
|
@@ -6962,11 +6962,11 @@
|
|
|
6962
6962
|
"isExtensionMethod": false
|
|
6963
6963
|
},
|
|
6964
6964
|
{
|
|
6965
|
-
"stableId": "nodejs:nodejs.DnsPromises::resolveNaptr(System.String):System.Threading.Tasks.Task_1[[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
6965
|
+
"stableId": "nodejs:nodejs.DnsPromises::resolveNaptr(System.String):System.Threading.Tasks.Task_1[[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6966
6966
|
"clrName": "resolveNaptr",
|
|
6967
6967
|
"metadataToken": 100664029,
|
|
6968
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
6969
|
-
"normalizedSignature": "resolveNaptr|(System.String):System.Threading.Tasks.Task_1[[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
6968
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6969
|
+
"normalizedSignature": "resolveNaptr|(System.String):System.Threading.Tasks.Task_1[[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
6970
6970
|
"emitScope": "ClassSurface",
|
|
6971
6971
|
"provenance": "Original",
|
|
6972
6972
|
"arity": 0,
|
|
@@ -7022,11 +7022,11 @@
|
|
|
7022
7022
|
"isExtensionMethod": false
|
|
7023
7023
|
},
|
|
7024
7024
|
{
|
|
7025
|
-
"stableId": "nodejs:nodejs.DnsPromises::resolveSoa(System.String):System.Threading.Tasks.Task_1[[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
7025
|
+
"stableId": "nodejs:nodejs.DnsPromises::resolveSoa(System.String):System.Threading.Tasks.Task_1[[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
7026
7026
|
"clrName": "resolveSoa",
|
|
7027
7027
|
"metadataToken": 100664032,
|
|
7028
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
7029
|
-
"normalizedSignature": "resolveSoa|(System.String):System.Threading.Tasks.Task_1[[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
7028
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
7029
|
+
"normalizedSignature": "resolveSoa|(System.String):System.Threading.Tasks.Task_1[[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
7030
7030
|
"emitScope": "ClassSurface",
|
|
7031
7031
|
"provenance": "Original",
|
|
7032
7032
|
"arity": 0,
|
|
@@ -7042,11 +7042,11 @@
|
|
|
7042
7042
|
"isExtensionMethod": false
|
|
7043
7043
|
},
|
|
7044
7044
|
{
|
|
7045
|
-
"stableId": "nodejs:nodejs.DnsPromises::resolveSrv(System.String):System.Threading.Tasks.Task_1[[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
7045
|
+
"stableId": "nodejs:nodejs.DnsPromises::resolveSrv(System.String):System.Threading.Tasks.Task_1[[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
7046
7046
|
"clrName": "resolveSrv",
|
|
7047
7047
|
"metadataToken": 100664033,
|
|
7048
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
7049
|
-
"normalizedSignature": "resolveSrv|(System.String):System.Threading.Tasks.Task_1[[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
7048
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
7049
|
+
"normalizedSignature": "resolveSrv|(System.String):System.Threading.Tasks.Task_1[[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
7050
7050
|
"emitScope": "ClassSurface",
|
|
7051
7051
|
"provenance": "Original",
|
|
7052
7052
|
"arity": 0,
|
|
@@ -7062,11 +7062,11 @@
|
|
|
7062
7062
|
"isExtensionMethod": false
|
|
7063
7063
|
},
|
|
7064
7064
|
{
|
|
7065
|
-
"stableId": "nodejs:nodejs.DnsPromises::resolveTlsa(System.String):System.Threading.Tasks.Task_1[[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
7065
|
+
"stableId": "nodejs:nodejs.DnsPromises::resolveTlsa(System.String):System.Threading.Tasks.Task_1[[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
7066
7066
|
"clrName": "resolveTlsa",
|
|
7067
7067
|
"metadataToken": 100664034,
|
|
7068
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
7069
|
-
"normalizedSignature": "resolveTlsa|(System.String):System.Threading.Tasks.Task_1[[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
7068
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
7069
|
+
"normalizedSignature": "resolveTlsa|(System.String):System.Threading.Tasks.Task_1[[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
7070
7070
|
"emitScope": "ClassSurface",
|
|
7071
7071
|
"provenance": "Original",
|
|
7072
7072
|
"arity": 0,
|
|
@@ -9223,11 +9223,11 @@
|
|
|
9223
9223
|
"isExtensionMethod": false
|
|
9224
9224
|
},
|
|
9225
9225
|
{
|
|
9226
|
-
"stableId": "nodejs:nodejs.FsPromises::fstat(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
9226
|
+
"stableId": "nodejs:nodejs.FsPromises::fstat(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
9227
9227
|
"clrName": "fstat",
|
|
9228
9228
|
"metadataToken": 100664279,
|
|
9229
|
-
"canonicalSignature": "(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
9230
|
-
"normalizedSignature": "fstat|(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
9229
|
+
"canonicalSignature": "(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
9230
|
+
"normalizedSignature": "fstat|(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
9231
9231
|
"emitScope": "ClassSurface",
|
|
9232
9232
|
"provenance": "Original",
|
|
9233
9233
|
"arity": 0,
|
|
@@ -9463,11 +9463,11 @@
|
|
|
9463
9463
|
"isExtensionMethod": false
|
|
9464
9464
|
},
|
|
9465
9465
|
{
|
|
9466
|
-
"stableId": "nodejs:nodejs.FsPromises::stat(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
9466
|
+
"stableId": "nodejs:nodejs.FsPromises::stat(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
9467
9467
|
"clrName": "stat",
|
|
9468
9468
|
"metadataToken": 100664291,
|
|
9469
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
9470
|
-
"normalizedSignature": "stat|(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
9469
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
9470
|
+
"normalizedSignature": "stat|(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
9471
9471
|
"emitScope": "ClassSurface",
|
|
9472
9472
|
"provenance": "Original",
|
|
9473
9473
|
"arity": 0,
|
|
@@ -12701,10 +12701,10 @@
|
|
|
12701
12701
|
"events": [],
|
|
12702
12702
|
"constructors": [
|
|
12703
12703
|
{
|
|
12704
|
-
"stableId": "nodejs:nodejs.PerformanceObserver::.ctor(System.Action_2[[nodejs.PerformanceObserverEntryList,nodejs,Version=1.0.
|
|
12704
|
+
"stableId": "nodejs:nodejs.PerformanceObserver::.ctor(System.Action_2[[nodejs.PerformanceObserverEntryList,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.PerformanceObserver,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
12705
12705
|
"metadataToken": 100664613,
|
|
12706
|
-
"canonicalSignature": "(System.Action_2[[nodejs.PerformanceObserverEntryList,nodejs,Version=1.0.
|
|
12707
|
-
"normalizedSignature": "constructor|(System.Action_2[[nodejs.PerformanceObserverEntryList,nodejs,Version=1.0.
|
|
12706
|
+
"canonicalSignature": "(System.Action_2[[nodejs.PerformanceObserverEntryList,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.PerformanceObserver,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
12707
|
+
"normalizedSignature": "constructor|(System.Action_2[[nodejs.PerformanceObserverEntryList,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.PerformanceObserver,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void|static=false",
|
|
12708
12708
|
"isStatic": false,
|
|
12709
12709
|
"parameterCount": 1,
|
|
12710
12710
|
"visibility": "Public",
|
|
@@ -14541,11 +14541,11 @@
|
|
|
14541
14541
|
"isExtensionMethod": false
|
|
14542
14542
|
},
|
|
14543
14543
|
{
|
|
14544
|
-
"stableId": "nodejs:nodejs.Resolver::resolveCaa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
14544
|
+
"stableId": "nodejs:nodejs.Resolver::resolveCaa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14545
14545
|
"clrName": "resolveCaa",
|
|
14546
14546
|
"metadataToken": 100664165,
|
|
14547
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
14548
|
-
"normalizedSignature": "resolveCaa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
14547
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14548
|
+
"normalizedSignature": "resolveCaa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=false",
|
|
14549
14549
|
"emitScope": "ClassSurface",
|
|
14550
14550
|
"provenance": "Original",
|
|
14551
14551
|
"arity": 0,
|
|
@@ -14581,11 +14581,11 @@
|
|
|
14581
14581
|
"isExtensionMethod": false
|
|
14582
14582
|
},
|
|
14583
14583
|
{
|
|
14584
|
-
"stableId": "nodejs:nodejs.Resolver::resolveMx(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
14584
|
+
"stableId": "nodejs:nodejs.Resolver::resolveMx(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14585
14585
|
"clrName": "resolveMx",
|
|
14586
14586
|
"metadataToken": 100664167,
|
|
14587
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
14588
|
-
"normalizedSignature": "resolveMx|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
14587
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14588
|
+
"normalizedSignature": "resolveMx|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=false",
|
|
14589
14589
|
"emitScope": "ClassSurface",
|
|
14590
14590
|
"provenance": "Original",
|
|
14591
14591
|
"arity": 0,
|
|
@@ -14601,11 +14601,11 @@
|
|
|
14601
14601
|
"isExtensionMethod": false
|
|
14602
14602
|
},
|
|
14603
14603
|
{
|
|
14604
|
-
"stableId": "nodejs:nodejs.Resolver::resolveNaptr(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
14604
|
+
"stableId": "nodejs:nodejs.Resolver::resolveNaptr(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14605
14605
|
"clrName": "resolveNaptr",
|
|
14606
14606
|
"metadataToken": 100664168,
|
|
14607
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
14608
|
-
"normalizedSignature": "resolveNaptr|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
14607
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14608
|
+
"normalizedSignature": "resolveNaptr|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=false",
|
|
14609
14609
|
"emitScope": "ClassSurface",
|
|
14610
14610
|
"provenance": "Original",
|
|
14611
14611
|
"arity": 0,
|
|
@@ -14661,11 +14661,11 @@
|
|
|
14661
14661
|
"isExtensionMethod": false
|
|
14662
14662
|
},
|
|
14663
14663
|
{
|
|
14664
|
-
"stableId": "nodejs:nodejs.Resolver::resolveSoa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
14664
|
+
"stableId": "nodejs:nodejs.Resolver::resolveSoa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14665
14665
|
"clrName": "resolveSoa",
|
|
14666
14666
|
"metadataToken": 100664171,
|
|
14667
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
14668
|
-
"normalizedSignature": "resolveSoa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
14667
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14668
|
+
"normalizedSignature": "resolveSoa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=false",
|
|
14669
14669
|
"emitScope": "ClassSurface",
|
|
14670
14670
|
"provenance": "Original",
|
|
14671
14671
|
"arity": 0,
|
|
@@ -14681,11 +14681,11 @@
|
|
|
14681
14681
|
"isExtensionMethod": false
|
|
14682
14682
|
},
|
|
14683
14683
|
{
|
|
14684
|
-
"stableId": "nodejs:nodejs.Resolver::resolveSrv(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
14684
|
+
"stableId": "nodejs:nodejs.Resolver::resolveSrv(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14685
14685
|
"clrName": "resolveSrv",
|
|
14686
14686
|
"metadataToken": 100664172,
|
|
14687
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
14688
|
-
"normalizedSignature": "resolveSrv|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
14687
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14688
|
+
"normalizedSignature": "resolveSrv|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=false",
|
|
14689
14689
|
"emitScope": "ClassSurface",
|
|
14690
14690
|
"provenance": "Original",
|
|
14691
14691
|
"arity": 0,
|
|
@@ -14701,11 +14701,11 @@
|
|
|
14701
14701
|
"isExtensionMethod": false
|
|
14702
14702
|
},
|
|
14703
14703
|
{
|
|
14704
|
-
"stableId": "nodejs:nodejs.Resolver::resolveTlsa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
14704
|
+
"stableId": "nodejs:nodejs.Resolver::resolveTlsa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14705
14705
|
"clrName": "resolveTlsa",
|
|
14706
14706
|
"metadataToken": 100664173,
|
|
14707
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
14708
|
-
"normalizedSignature": "resolveTlsa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
14707
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14708
|
+
"normalizedSignature": "resolveTlsa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=false",
|
|
14709
14709
|
"emitScope": "ClassSurface",
|
|
14710
14710
|
"provenance": "Original",
|
|
14711
14711
|
"arity": 0,
|
|
@@ -15655,10 +15655,10 @@
|
|
|
15655
15655
|
"declaringAssemblyName": "nodejs"
|
|
15656
15656
|
},
|
|
15657
15657
|
{
|
|
15658
|
-
"stableId": "nodejs:nodejs.Server::.ctor(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
15658
|
+
"stableId": "nodejs:nodejs.Server::.ctor(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
15659
15659
|
"metadataToken": 100664424,
|
|
15660
|
-
"canonicalSignature": "(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
15661
|
-
"normalizedSignature": "constructor|(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
15660
|
+
"canonicalSignature": "(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
15661
|
+
"normalizedSignature": "constructor|(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void|static=false",
|
|
15662
15662
|
"isStatic": false,
|
|
15663
15663
|
"parameterCount": 1,
|
|
15664
15664
|
"visibility": "Public",
|
|
@@ -15666,10 +15666,10 @@
|
|
|
15666
15666
|
"declaringAssemblyName": "nodejs"
|
|
15667
15667
|
},
|
|
15668
15668
|
{
|
|
15669
|
-
"stableId": "nodejs:nodejs.Server::.ctor(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
15669
|
+
"stableId": "nodejs:nodejs.Server::.ctor(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
15670
15670
|
"metadataToken": 100664425,
|
|
15671
|
-
"canonicalSignature": "(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
15672
|
-
"normalizedSignature": "constructor|(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
15671
|
+
"canonicalSignature": "(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
15672
|
+
"normalizedSignature": "constructor|(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void|static=false",
|
|
15673
15673
|
"isStatic": false,
|
|
15674
15674
|
"parameterCount": 2,
|
|
15675
15675
|
"visibility": "Public",
|
|
@@ -19199,10 +19199,10 @@
|
|
|
19199
19199
|
"declaringAssemblyName": "nodejs"
|
|
19200
19200
|
},
|
|
19201
19201
|
{
|
|
19202
|
-
"stableId": "nodejs:nodejs.TLSServer::.ctor(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
19202
|
+
"stableId": "nodejs:nodejs.TLSServer::.ctor(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
19203
19203
|
"metadataToken": 100664979,
|
|
19204
|
-
"canonicalSignature": "(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
19205
|
-
"normalizedSignature": "constructor|(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
19204
|
+
"canonicalSignature": "(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
19205
|
+
"normalizedSignature": "constructor|(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void|static=false",
|
|
19206
19206
|
"isStatic": false,
|
|
19207
19207
|
"parameterCount": 1,
|
|
19208
19208
|
"visibility": "Public",
|
|
@@ -19210,10 +19210,10 @@
|
|
|
19210
19210
|
"declaringAssemblyName": "nodejs"
|
|
19211
19211
|
},
|
|
19212
19212
|
{
|
|
19213
|
-
"stableId": "nodejs:nodejs.TLSServer::.ctor(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
19213
|
+
"stableId": "nodejs:nodejs.TLSServer::.ctor(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
19214
19214
|
"metadataToken": 100664980,
|
|
19215
|
-
"canonicalSignature": "(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
19216
|
-
"normalizedSignature": "constructor|(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
19215
|
+
"canonicalSignature": "(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
19216
|
+
"normalizedSignature": "constructor|(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void|static=false",
|
|
19217
19217
|
"isStatic": false,
|
|
19218
19218
|
"parameterCount": 2,
|
|
19219
19219
|
"visibility": "Public",
|
|
@@ -23931,11 +23931,11 @@
|
|
|
23931
23931
|
"isExtensionMethod": false
|
|
23932
23932
|
},
|
|
23933
23933
|
{
|
|
23934
|
-
"stableId": "nodejs:nodejs.crypto::generateKeyPairSync(System.String,System.Object):System.ValueTuple_2[[nodejs.KeyObject,nodejs,Version=1.0.
|
|
23934
|
+
"stableId": "nodejs:nodejs.crypto::generateKeyPairSync(System.String,System.Object):System.ValueTuple_2[[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
23935
23935
|
"clrName": "generateKeyPairSync",
|
|
23936
23936
|
"metadataToken": 100663672,
|
|
23937
|
-
"canonicalSignature": "(System.String,System.Object):System.ValueTuple_2[[nodejs.KeyObject,nodejs,Version=1.0.
|
|
23938
|
-
"normalizedSignature": "generateKeyPairSync|(System.String,System.Object):System.ValueTuple_2[[nodejs.KeyObject,nodejs,Version=1.0.
|
|
23937
|
+
"canonicalSignature": "(System.String,System.Object):System.ValueTuple_2[[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
23938
|
+
"normalizedSignature": "generateKeyPairSync|(System.String,System.Object):System.ValueTuple_2[[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=true",
|
|
23939
23939
|
"emitScope": "ClassSurface",
|
|
23940
23940
|
"provenance": "Original",
|
|
23941
23941
|
"arity": 0,
|
|
@@ -24271,11 +24271,11 @@
|
|
|
24271
24271
|
"isExtensionMethod": false
|
|
24272
24272
|
},
|
|
24273
24273
|
{
|
|
24274
|
-
"stableId": "nodejs:nodejs.crypto::generateKey(System.String,System.Object,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.KeyObject,nodejs,Version=1.0.
|
|
24274
|
+
"stableId": "nodejs:nodejs.crypto::generateKey(System.String,System.Object,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24275
24275
|
"clrName": "generateKey",
|
|
24276
24276
|
"metadataToken": 100663692,
|
|
24277
|
-
"canonicalSignature": "(System.String,System.Object,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.KeyObject,nodejs,Version=1.0.
|
|
24278
|
-
"normalizedSignature": "generateKey|(System.String,System.Object,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.KeyObject,nodejs,Version=1.0.
|
|
24277
|
+
"canonicalSignature": "(System.String,System.Object,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24278
|
+
"normalizedSignature": "generateKey|(System.String,System.Object,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
24279
24279
|
"emitScope": "ClassSurface",
|
|
24280
24280
|
"provenance": "Original",
|
|
24281
24281
|
"arity": 0,
|
|
@@ -24633,11 +24633,11 @@
|
|
|
24633
24633
|
},
|
|
24634
24634
|
"methods": [
|
|
24635
24635
|
{
|
|
24636
|
-
"stableId": "nodejs:nodejs.dgram::createSocket(System.String,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.
|
|
24636
|
+
"stableId": "nodejs:nodejs.dgram::createSocket(System.String,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.DgramSocket",
|
|
24637
24637
|
"clrName": "createSocket",
|
|
24638
24638
|
"metadataToken": 100663886,
|
|
24639
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.
|
|
24640
|
-
"normalizedSignature": "createSocket|(System.String,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.
|
|
24639
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.DgramSocket",
|
|
24640
|
+
"normalizedSignature": "createSocket|(System.String,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.DgramSocket|static=true",
|
|
24641
24641
|
"emitScope": "ClassSurface",
|
|
24642
24642
|
"provenance": "Original",
|
|
24643
24643
|
"arity": 0,
|
|
@@ -24653,11 +24653,11 @@
|
|
|
24653
24653
|
"isExtensionMethod": false
|
|
24654
24654
|
},
|
|
24655
24655
|
{
|
|
24656
|
-
"stableId": "nodejs:nodejs.dgram::createSocket(nodejs.SocketOptions,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.
|
|
24656
|
+
"stableId": "nodejs:nodejs.dgram::createSocket(nodejs.SocketOptions,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.DgramSocket",
|
|
24657
24657
|
"clrName": "createSocket",
|
|
24658
24658
|
"metadataToken": 100663887,
|
|
24659
|
-
"canonicalSignature": "(nodejs.SocketOptions,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.
|
|
24660
|
-
"normalizedSignature": "createSocket|(nodejs.SocketOptions,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.
|
|
24659
|
+
"canonicalSignature": "(nodejs.SocketOptions,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.DgramSocket",
|
|
24660
|
+
"normalizedSignature": "createSocket|(nodejs.SocketOptions,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.DgramSocket|static=true",
|
|
24661
24661
|
"emitScope": "ClassSurface",
|
|
24662
24662
|
"provenance": "Original",
|
|
24663
24663
|
"arity": 0,
|
|
@@ -24755,11 +24755,11 @@
|
|
|
24755
24755
|
"isExtensionMethod": false
|
|
24756
24756
|
},
|
|
24757
24757
|
{
|
|
24758
|
-
"stableId": "nodejs:nodejs.dns::lookup(System.String,nodejs.LookupOptions,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.LookupAddress[],nodejs,Version=1.0.
|
|
24758
|
+
"stableId": "nodejs:nodejs.dns::lookup(System.String,nodejs.LookupOptions,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.LookupAddress[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24759
24759
|
"clrName": "lookup",
|
|
24760
24760
|
"metadataToken": 100663963,
|
|
24761
|
-
"canonicalSignature": "(System.String,nodejs.LookupOptions,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.LookupAddress[],nodejs,Version=1.0.
|
|
24762
|
-
"normalizedSignature": "lookup|(System.String,nodejs.LookupOptions,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.LookupAddress[],nodejs,Version=1.0.
|
|
24761
|
+
"canonicalSignature": "(System.String,nodejs.LookupOptions,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.LookupAddress[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24762
|
+
"normalizedSignature": "lookup|(System.String,nodejs.LookupOptions,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.LookupAddress[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
24763
24763
|
"emitScope": "ClassSurface",
|
|
24764
24764
|
"provenance": "Original",
|
|
24765
24765
|
"arity": 0,
|
|
@@ -24935,11 +24935,11 @@
|
|
|
24935
24935
|
"isExtensionMethod": false
|
|
24936
24936
|
},
|
|
24937
24937
|
{
|
|
24938
|
-
"stableId": "nodejs:nodejs.dns::resolveCaa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
24938
|
+
"stableId": "nodejs:nodejs.dns::resolveCaa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24939
24939
|
"clrName": "resolveCaa",
|
|
24940
24940
|
"metadataToken": 100663973,
|
|
24941
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
24942
|
-
"normalizedSignature": "resolveCaa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
24941
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24942
|
+
"normalizedSignature": "resolveCaa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
24943
24943
|
"emitScope": "ClassSurface",
|
|
24944
24944
|
"provenance": "Original",
|
|
24945
24945
|
"arity": 0,
|
|
@@ -24955,11 +24955,11 @@
|
|
|
24955
24955
|
"isExtensionMethod": false
|
|
24956
24956
|
},
|
|
24957
24957
|
{
|
|
24958
|
-
"stableId": "nodejs:nodejs.dns::resolveMx(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
24958
|
+
"stableId": "nodejs:nodejs.dns::resolveMx(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24959
24959
|
"clrName": "resolveMx",
|
|
24960
24960
|
"metadataToken": 100663974,
|
|
24961
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
24962
|
-
"normalizedSignature": "resolveMx|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
24961
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24962
|
+
"normalizedSignature": "resolveMx|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
24963
24963
|
"emitScope": "ClassSurface",
|
|
24964
24964
|
"provenance": "Original",
|
|
24965
24965
|
"arity": 0,
|
|
@@ -24975,11 +24975,11 @@
|
|
|
24975
24975
|
"isExtensionMethod": false
|
|
24976
24976
|
},
|
|
24977
24977
|
{
|
|
24978
|
-
"stableId": "nodejs:nodejs.dns::resolveNaptr(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
24978
|
+
"stableId": "nodejs:nodejs.dns::resolveNaptr(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24979
24979
|
"clrName": "resolveNaptr",
|
|
24980
24980
|
"metadataToken": 100663975,
|
|
24981
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
24982
|
-
"normalizedSignature": "resolveNaptr|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
24981
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24982
|
+
"normalizedSignature": "resolveNaptr|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
24983
24983
|
"emitScope": "ClassSurface",
|
|
24984
24984
|
"provenance": "Original",
|
|
24985
24985
|
"arity": 0,
|
|
@@ -25035,11 +25035,11 @@
|
|
|
25035
25035
|
"isExtensionMethod": false
|
|
25036
25036
|
},
|
|
25037
25037
|
{
|
|
25038
|
-
"stableId": "nodejs:nodejs.dns::resolveSoa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
25038
|
+
"stableId": "nodejs:nodejs.dns::resolveSoa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
25039
25039
|
"clrName": "resolveSoa",
|
|
25040
25040
|
"metadataToken": 100663978,
|
|
25041
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
25042
|
-
"normalizedSignature": "resolveSoa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
25041
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
25042
|
+
"normalizedSignature": "resolveSoa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
25043
25043
|
"emitScope": "ClassSurface",
|
|
25044
25044
|
"provenance": "Original",
|
|
25045
25045
|
"arity": 0,
|
|
@@ -25055,11 +25055,11 @@
|
|
|
25055
25055
|
"isExtensionMethod": false
|
|
25056
25056
|
},
|
|
25057
25057
|
{
|
|
25058
|
-
"stableId": "nodejs:nodejs.dns::resolveSrv(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
25058
|
+
"stableId": "nodejs:nodejs.dns::resolveSrv(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
25059
25059
|
"clrName": "resolveSrv",
|
|
25060
25060
|
"metadataToken": 100663979,
|
|
25061
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
25062
|
-
"normalizedSignature": "resolveSrv|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
25061
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
25062
|
+
"normalizedSignature": "resolveSrv|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
25063
25063
|
"emitScope": "ClassSurface",
|
|
25064
25064
|
"provenance": "Original",
|
|
25065
25065
|
"arity": 0,
|
|
@@ -25075,11 +25075,11 @@
|
|
|
25075
25075
|
"isExtensionMethod": false
|
|
25076
25076
|
},
|
|
25077
25077
|
{
|
|
25078
|
-
"stableId": "nodejs:nodejs.dns::resolveTlsa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
25078
|
+
"stableId": "nodejs:nodejs.dns::resolveTlsa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
25079
25079
|
"clrName": "resolveTlsa",
|
|
25080
25080
|
"metadataToken": 100663980,
|
|
25081
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
25082
|
-
"normalizedSignature": "resolveTlsa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
25081
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
25082
|
+
"normalizedSignature": "resolveTlsa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
25083
25083
|
"emitScope": "ClassSurface",
|
|
25084
25084
|
"provenance": "Original",
|
|
25085
25085
|
"arity": 0,
|
|
@@ -26101,11 +26101,11 @@
|
|
|
26101
26101
|
"isExtensionMethod": false
|
|
26102
26102
|
},
|
|
26103
26103
|
{
|
|
26104
|
-
"stableId": "nodejs:nodejs.fs::fstat(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
26104
|
+
"stableId": "nodejs:nodejs.fs::fstat(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
26105
26105
|
"clrName": "fstat",
|
|
26106
26106
|
"metadataToken": 100664223,
|
|
26107
|
-
"canonicalSignature": "(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
26108
|
-
"normalizedSignature": "fstat|(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
26107
|
+
"canonicalSignature": "(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
26108
|
+
"normalizedSignature": "fstat|(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=true",
|
|
26109
26109
|
"emitScope": "ClassSurface",
|
|
26110
26110
|
"provenance": "Original",
|
|
26111
26111
|
"arity": 0,
|
|
@@ -26581,11 +26581,11 @@
|
|
|
26581
26581
|
"isExtensionMethod": false
|
|
26582
26582
|
},
|
|
26583
26583
|
{
|
|
26584
|
-
"stableId": "nodejs:nodejs.fs::stat(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
26584
|
+
"stableId": "nodejs:nodejs.fs::stat(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
26585
26585
|
"clrName": "stat",
|
|
26586
26586
|
"metadataToken": 100664251,
|
|
26587
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
26588
|
-
"normalizedSignature": "stat|(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
26587
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
26588
|
+
"normalizedSignature": "stat|(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=true",
|
|
26589
26589
|
"emitScope": "ClassSurface",
|
|
26590
26590
|
"provenance": "Original",
|
|
26591
26591
|
"arity": 0,
|
|
@@ -26943,11 +26943,11 @@
|
|
|
26943
26943
|
},
|
|
26944
26944
|
"methods": [
|
|
26945
26945
|
{
|
|
26946
|
-
"stableId": "nodejs:nodejs.net::createServer(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
26946
|
+
"stableId": "nodejs:nodejs.net::createServer(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Server",
|
|
26947
26947
|
"clrName": "createServer",
|
|
26948
26948
|
"metadataToken": 100664350,
|
|
26949
|
-
"canonicalSignature": "(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
26950
|
-
"normalizedSignature": "createServer|(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
26949
|
+
"canonicalSignature": "(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Server",
|
|
26950
|
+
"normalizedSignature": "createServer|(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Server|static=true",
|
|
26951
26951
|
"emitScope": "ClassSurface",
|
|
26952
26952
|
"provenance": "Original",
|
|
26953
26953
|
"arity": 0,
|
|
@@ -26963,11 +26963,11 @@
|
|
|
26963
26963
|
"isExtensionMethod": false
|
|
26964
26964
|
},
|
|
26965
26965
|
{
|
|
26966
|
-
"stableId": "nodejs:nodejs.net::createServer(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
26966
|
+
"stableId": "nodejs:nodejs.net::createServer(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Server",
|
|
26967
26967
|
"clrName": "createServer",
|
|
26968
26968
|
"metadataToken": 100664351,
|
|
26969
|
-
"canonicalSignature": "(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
26970
|
-
"normalizedSignature": "createServer|(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
26969
|
+
"canonicalSignature": "(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Server",
|
|
26970
|
+
"normalizedSignature": "createServer|(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Server|static=true",
|
|
26971
26971
|
"emitScope": "ClassSurface",
|
|
26972
26972
|
"provenance": "Original",
|
|
26973
26973
|
"arity": 0,
|
|
@@ -29100,11 +29100,11 @@
|
|
|
29100
29100
|
},
|
|
29101
29101
|
"methods": [
|
|
29102
29102
|
{
|
|
29103
|
-
"stableId": "nodejs:nodejs.tls::createServer(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
29103
|
+
"stableId": "nodejs:nodejs.tls::createServer(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.TLSServer",
|
|
29104
29104
|
"clrName": "createServer",
|
|
29105
29105
|
"metadataToken": 100664990,
|
|
29106
|
-
"canonicalSignature": "(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
29107
|
-
"normalizedSignature": "createServer|(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
29106
|
+
"canonicalSignature": "(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.TLSServer",
|
|
29107
|
+
"normalizedSignature": "createServer|(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.TLSServer|static=true",
|
|
29108
29108
|
"emitScope": "ClassSurface",
|
|
29109
29109
|
"provenance": "Original",
|
|
29110
29110
|
"arity": 0,
|
|
@@ -29120,11 +29120,11 @@
|
|
|
29120
29120
|
"isExtensionMethod": false
|
|
29121
29121
|
},
|
|
29122
29122
|
{
|
|
29123
|
-
"stableId": "nodejs:nodejs.tls::createServer(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
29123
|
+
"stableId": "nodejs:nodejs.tls::createServer(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.TLSServer",
|
|
29124
29124
|
"clrName": "createServer",
|
|
29125
29125
|
"metadataToken": 100664991,
|
|
29126
|
-
"canonicalSignature": "(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
29127
|
-
"normalizedSignature": "createServer|(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
29126
|
+
"canonicalSignature": "(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.TLSServer",
|
|
29127
|
+
"normalizedSignature": "createServer|(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.TLSServer|static=true",
|
|
29128
29128
|
"emitScope": "ClassSurface",
|
|
29129
29129
|
"provenance": "Original",
|
|
29130
29130
|
"arity": 0,
|
|
@@ -22,7 +22,7 @@ import type { Task, Task_1 } from "@tsonic/dotnet/System.Threading.Tasks/interna
|
|
|
22
22
|
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
23
23
|
import type { Action, Action_1, Action_2, Action_3, AsyncCallback, Boolean as ClrBoolean, Byte, DateTime, Delegate, Double, Exception, Func_1, IAsyncResult, ICloneable, IDisposable, Int16, Int32, Int64, IntPtr, MulticastDelegate, Nullable_1, Object as ClrObject, SByte, Single, String as ClrString, UInt16, UInt32, UInt64, ValueTuple_2, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
24
24
|
|
|
25
|
-
export type DebugLogFunction = (message: string, args: unknown[]) => void;
|
|
25
|
+
export type DebugLogFunction = (message: string, ...args: unknown[]) => void;
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
export interface AddressInfo$instance {
|
|
@@ -1110,10 +1110,10 @@
|
|
|
1110
1110
|
"events": [],
|
|
1111
1111
|
"constructors": [
|
|
1112
1112
|
{
|
|
1113
|
-
"stableId": "nodejs:nodejs.Http.Server::.ctor(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1113
|
+
"stableId": "nodejs:nodejs.Http.Server::.ctor(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
1114
1114
|
"metadataToken": 100665217,
|
|
1115
|
-
"canonicalSignature": "(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1116
|
-
"normalizedSignature": "constructor|(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1115
|
+
"canonicalSignature": "(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
1116
|
+
"normalizedSignature": "constructor|(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void|static=false",
|
|
1117
1117
|
"isStatic": false,
|
|
1118
1118
|
"parameterCount": 1,
|
|
1119
1119
|
"visibility": "Public",
|
|
@@ -1517,11 +1517,11 @@
|
|
|
1517
1517
|
},
|
|
1518
1518
|
"methods": [
|
|
1519
1519
|
{
|
|
1520
|
-
"stableId": "nodejs:nodejs.Http.http::createServer(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1520
|
+
"stableId": "nodejs:nodejs.Http.http::createServer(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.Server",
|
|
1521
1521
|
"clrName": "createServer",
|
|
1522
1522
|
"metadataToken": 100665170,
|
|
1523
|
-
"canonicalSignature": "(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1524
|
-
"normalizedSignature": "createServer|(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1523
|
+
"canonicalSignature": "(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.Server",
|
|
1524
|
+
"normalizedSignature": "createServer|(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.Server|static=true",
|
|
1525
1525
|
"emitScope": "ClassSurface",
|
|
1526
1526
|
"provenance": "Original",
|
|
1527
1527
|
"arity": 0,
|
|
@@ -1537,11 +1537,11 @@
|
|
|
1537
1537
|
"isExtensionMethod": false
|
|
1538
1538
|
},
|
|
1539
1539
|
{
|
|
1540
|
-
"stableId": "nodejs:nodejs.Http.http::request(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1540
|
+
"stableId": "nodejs:nodejs.Http.http::request(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1541
1541
|
"clrName": "request",
|
|
1542
1542
|
"metadataToken": 100665171,
|
|
1543
|
-
"canonicalSignature": "(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1544
|
-
"normalizedSignature": "request|(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1543
|
+
"canonicalSignature": "(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1544
|
+
"normalizedSignature": "request|(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest|static=true",
|
|
1545
1545
|
"emitScope": "ClassSurface",
|
|
1546
1546
|
"provenance": "Original",
|
|
1547
1547
|
"arity": 0,
|
|
@@ -1557,11 +1557,11 @@
|
|
|
1557
1557
|
"isExtensionMethod": false
|
|
1558
1558
|
},
|
|
1559
1559
|
{
|
|
1560
|
-
"stableId": "nodejs:nodejs.Http.http::request(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1560
|
+
"stableId": "nodejs:nodejs.Http.http::request(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1561
1561
|
"clrName": "request",
|
|
1562
1562
|
"metadataToken": 100665172,
|
|
1563
|
-
"canonicalSignature": "(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1564
|
-
"normalizedSignature": "request|(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1563
|
+
"canonicalSignature": "(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1564
|
+
"normalizedSignature": "request|(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest|static=true",
|
|
1565
1565
|
"emitScope": "ClassSurface",
|
|
1566
1566
|
"provenance": "Original",
|
|
1567
1567
|
"arity": 0,
|
|
@@ -1577,11 +1577,11 @@
|
|
|
1577
1577
|
"isExtensionMethod": false
|
|
1578
1578
|
},
|
|
1579
1579
|
{
|
|
1580
|
-
"stableId": "nodejs:nodejs.Http.http::get(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1580
|
+
"stableId": "nodejs:nodejs.Http.http::get(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1581
1581
|
"clrName": "get",
|
|
1582
1582
|
"metadataToken": 100665173,
|
|
1583
|
-
"canonicalSignature": "(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1584
|
-
"normalizedSignature": "get|(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1583
|
+
"canonicalSignature": "(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1584
|
+
"normalizedSignature": "get|(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest|static=true",
|
|
1585
1585
|
"emitScope": "ClassSurface",
|
|
1586
1586
|
"provenance": "Original",
|
|
1587
1587
|
"arity": 0,
|
|
@@ -1597,11 +1597,11 @@
|
|
|
1597
1597
|
"isExtensionMethod": false
|
|
1598
1598
|
},
|
|
1599
1599
|
{
|
|
1600
|
-
"stableId": "nodejs:nodejs.Http.http::get(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1600
|
+
"stableId": "nodejs:nodejs.Http.http::get(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1601
1601
|
"clrName": "get",
|
|
1602
1602
|
"metadataToken": 100665174,
|
|
1603
|
-
"canonicalSignature": "(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1604
|
-
"normalizedSignature": "get|(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1603
|
+
"canonicalSignature": "(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1604
|
+
"normalizedSignature": "get|(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest|static=true",
|
|
1605
1605
|
"emitScope": "ClassSurface",
|
|
1606
1606
|
"provenance": "Original",
|
|
1607
1607
|
"arity": 0,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/nodejs",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.27",
|
|
4
4
|
"description": "TypeScript type definitions for Node.js CLR library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"url": "https://github.com/tsoniclang/nodejs.git"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@tsonic/dotnet": "10.0.
|
|
23
|
-
"@tsonic/core": "10.0.
|
|
22
|
+
"@tsonic/dotnet": "10.0.27",
|
|
23
|
+
"@tsonic/core": "10.0.27"
|
|
24
24
|
}
|
|
25
25
|
}
|