@tsonic/dotnet 0.8.3 → 0.8.7
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 +27 -26
- package/System.Buffers.d.ts +6 -0
- package/System.Collections.Concurrent.d.ts +3 -0
- package/System.Collections.Frozen.d.ts +3 -0
- package/System.Collections.Generic.d.ts +3 -0
- package/System.Collections.Immutable.d.ts +3 -0
- package/System.Collections.ObjectModel.d.ts +3 -0
- package/System.Data.Common.d.ts +3 -0
- package/System.Data.d.ts +7 -0
- package/System.Diagnostics.Metrics.d.ts +6 -0
- package/System.Diagnostics.d.ts +3 -0
- package/System.Globalization.d.ts +3 -0
- package/System.IO.Compression.d.ts +3 -0
- package/System.IO.Pipelines.d.ts +3 -0
- package/System.IO.Pipes.d.ts +3 -0
- package/System.IO.d.ts +3 -0
- package/System.Linq.Expressions/internal/index.d.ts +1 -1
- package/System.Linq.Expressions.d.ts +3 -0
- package/System.Linq.d.ts +8 -0
- package/System.Net.Http.Json.d.ts +3 -0
- package/System.Net.ServerSentEvents.d.ts +3 -0
- package/System.Net.Sockets.d.ts +3 -0
- package/System.Numerics.d.ts +6 -0
- package/System.Reflection.Metadata.Ecma335.d.ts +3 -0
- package/System.Reflection.Metadata.d.ts +3 -0
- package/System.Reflection.d.ts +3 -0
- package/System.Runtime.CompilerServices.d.ts +8 -0
- package/System.Runtime.InteropServices.JavaScript.d.ts +3 -0
- package/System.Runtime.InteropServices.Swift.d.ts +3 -0
- package/System.Runtime.InteropServices.d.ts +6 -0
- package/System.Runtime.Intrinsics.d.ts +9 -0
- package/System.Runtime.Serialization.Json.d.ts +3 -0
- package/System.Runtime.Serialization.d.ts +3 -0
- package/System.Security.AccessControl.d.ts +5 -0
- package/System.Security.Cryptography.X509Certificates.d.ts +3 -0
- package/System.Text.Json.Schema.d.ts +3 -0
- package/System.Text.Json.Serialization.Metadata.d.ts +6 -0
- package/System.Text.Json.Serialization.d.ts +5 -0
- package/System.Text.Json.d.ts +3 -0
- package/System.Text.d.ts +3 -0
- package/System.Threading.Channels.d.ts +3 -0
- package/System.Threading.Tasks.Dataflow.d.ts +5 -0
- package/System.Threading.Tasks.Sources.d.ts +2 -0
- package/System.Threading.Tasks.d.ts +9 -0
- package/System.Threading.d.ts +3 -0
- package/System.Xml.Linq.d.ts +3 -0
- package/System.Xml.Schema.d.ts +3 -0
- package/System.Xml.XPath.d.ts +3 -0
- package/System.d.ts +9 -0
- package/__build/scripts/generate.sh +6 -5
- package/__internal/extensions/index.d.ts +2517 -2196
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,16 +4,16 @@ TypeScript type definitions for .NET 10 BCL (Base Class Library).
|
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
|
-
- ✅ **Complete .NET 10 BCL coverage** - 130 namespaces, 4,
|
|
7
|
+
- ✅ **Complete .NET 10 BCL coverage** - 130 namespaces, 4,296 types, 50,675 members
|
|
8
8
|
- ✅ **camelCase members** - TypeScript-friendly naming conventions
|
|
9
9
|
- ✅ **Friendly generic aliases** - Use `List<T>` instead of `List_1<T>`
|
|
10
|
-
- ✅ **
|
|
10
|
+
- ✅ **Primitive aliases** - `int`, `long`, `decimal`, etc. via `@tsonic/core`
|
|
11
11
|
- ✅ **Full type safety** - Zero TypeScript errors
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npm install @tsonic/dotnet @tsonic/
|
|
16
|
+
npm install @tsonic/dotnet @tsonic/core
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Usage
|
|
@@ -21,8 +21,8 @@ npm install @tsonic/dotnet @tsonic/types
|
|
|
21
21
|
### Collections
|
|
22
22
|
|
|
23
23
|
```typescript
|
|
24
|
-
import type { List, Dictionary, HashSet } from "@tsonic/dotnet/System.Collections.Generic";
|
|
25
|
-
import type { int, decimal } from "@tsonic/types";
|
|
24
|
+
import type { List, Dictionary, HashSet } from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
25
|
+
import type { int, decimal } from "@tsonic/core/types.js";
|
|
26
26
|
|
|
27
27
|
const ages: List<int> = null!;
|
|
28
28
|
const prices: Dictionary<string, decimal> = null!;
|
|
@@ -32,8 +32,8 @@ const uniqueIds: HashSet<int> = null!;
|
|
|
32
32
|
### Async Programming
|
|
33
33
|
|
|
34
34
|
```typescript
|
|
35
|
-
import type { Task } from "@tsonic/dotnet/System.Threading.Tasks";
|
|
36
|
-
import type { int } from "@tsonic/types";
|
|
35
|
+
import type { Task } from "@tsonic/dotnet/System.Threading.Tasks.js";
|
|
36
|
+
import type { int } from "@tsonic/core/types.js";
|
|
37
37
|
|
|
38
38
|
const asyncResult: Task<int> = null!;
|
|
39
39
|
```
|
|
@@ -41,8 +41,8 @@ const asyncResult: Task<int> = null!;
|
|
|
41
41
|
### Core Types
|
|
42
42
|
|
|
43
43
|
```typescript
|
|
44
|
-
import type { Nullable, Action, Func } from "@tsonic/dotnet/System";
|
|
45
|
-
import type { int } from "@tsonic/types";
|
|
44
|
+
import type { Nullable, Action, Func } from "@tsonic/dotnet/System.js";
|
|
45
|
+
import type { int } from "@tsonic/core/types.js";
|
|
46
46
|
|
|
47
47
|
const optional: Nullable<int> = null!;
|
|
48
48
|
const callback: Action<int> = null!;
|
|
@@ -52,8 +52,8 @@ const converter: Func<int, string> = null!;
|
|
|
52
52
|
### LINQ
|
|
53
53
|
|
|
54
54
|
```typescript
|
|
55
|
-
import type { IEnumerable, IQueryable } from "@tsonic/dotnet/System.Linq";
|
|
56
|
-
import type { int } from "@tsonic/types";
|
|
55
|
+
import type { IEnumerable, IQueryable } from "@tsonic/dotnet/System.Linq.js";
|
|
56
|
+
import type { int } from "@tsonic/core/types.js";
|
|
57
57
|
|
|
58
58
|
const sequence: IEnumerable<int> = null!;
|
|
59
59
|
```
|
|
@@ -63,7 +63,7 @@ const sequence: IEnumerable<int> = null!;
|
|
|
63
63
|
- **130 namespaces** - All major .NET namespaces
|
|
64
64
|
- **Flat ESM modules** - Clean import paths
|
|
65
65
|
- **Metadata sidecars** - `metadata.json` files for CLR-specific info
|
|
66
|
-
- **Support types** -
|
|
66
|
+
- **Support types** - Unsafe markers (`ptr<T>`) and primitives imported from `@tsonic/core`
|
|
67
67
|
|
|
68
68
|
## Naming Conventions
|
|
69
69
|
|
|
@@ -76,20 +76,20 @@ const sequence: IEnumerable<int> = null!;
|
|
|
76
76
|
### File I/O
|
|
77
77
|
|
|
78
78
|
```typescript
|
|
79
|
-
import type { Stream, FileStream } from "@tsonic/dotnet/System.IO";
|
|
79
|
+
import type { Stream, FileStream } from "@tsonic/dotnet/System.IO.js";
|
|
80
80
|
```
|
|
81
81
|
|
|
82
82
|
### Networking
|
|
83
83
|
|
|
84
84
|
```typescript
|
|
85
|
-
import type { HttpClient } from "@tsonic/dotnet/System.Net.Http";
|
|
86
|
-
import type { IPAddress, Socket } from "@tsonic/dotnet/System.Net";
|
|
85
|
+
import type { HttpClient } from "@tsonic/dotnet/System.Net.Http.js";
|
|
86
|
+
import type { IPAddress, Socket } from "@tsonic/dotnet/System.Net.js";
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
### Serialization
|
|
90
90
|
|
|
91
91
|
```typescript
|
|
92
|
-
import type { JsonSerializer } from "@tsonic/dotnet/System.Text.Json";
|
|
92
|
+
import type { JsonSerializer } from "@tsonic/dotnet/System.Text.Json.js";
|
|
93
93
|
```
|
|
94
94
|
|
|
95
95
|
## Development
|
|
@@ -119,16 +119,17 @@ The script will:
|
|
|
119
119
|
|
|
120
120
|
```
|
|
121
121
|
@tsonic/dotnet/
|
|
122
|
-
├──
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
├──
|
|
128
|
-
│ └──
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
122
|
+
├── families.json # Multi-arity family index
|
|
123
|
+
├── __internal/extensions/index.d.ts # Extension method buckets
|
|
124
|
+
├── System.d.ts # Facade (public API)
|
|
125
|
+
├── System.js # Runtime stub (throws)
|
|
126
|
+
├── System/
|
|
127
|
+
│ ├── bindings.json
|
|
128
|
+
│ └── internal/
|
|
129
|
+
│ ├── index.d.ts
|
|
130
|
+
│ └── metadata.json
|
|
131
|
+
├── ... (more namespaces)
|
|
132
|
+
└── __build/scripts/generate.sh # Type regeneration script
|
|
132
133
|
```
|
|
133
134
|
|
|
134
135
|
## License
|
package/System.Buffers.d.ts
CHANGED
|
@@ -30,6 +30,9 @@ export { MemoryManager_1 as MemoryManager } from './System.Buffers/internal/inde
|
|
|
30
30
|
export { OperationStatus as OperationStatus } from './System.Buffers/internal/index.js';
|
|
31
31
|
export { StandardFormat as StandardFormat } from './System.Buffers/internal/index.js';
|
|
32
32
|
|
|
33
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
34
|
+
export const SearchValues: typeof Internal.SearchValues$instance;
|
|
35
|
+
|
|
33
36
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
34
37
|
declare const __unspecified: unique symbol;
|
|
35
38
|
export type __ = typeof __unspecified;
|
|
@@ -40,3 +43,6 @@ export type SearchValues<
|
|
|
40
43
|
[T1] extends [__] ? Internal.SearchValues :
|
|
41
44
|
[T1] extends [IEquatable_1<T1>] ? Internal.SearchValues_1<T1> : never;
|
|
42
45
|
|
|
46
|
+
// Extension methods (C# using semantics)
|
|
47
|
+
export type { ExtensionMethods_System_Buffers as ExtensionMethods } from './__internal/extensions/index.js';
|
|
48
|
+
|
|
@@ -21,6 +21,9 @@ export { EnumerablePartitionerOptions as EnumerablePartitionerOptions } from './
|
|
|
21
21
|
export { ConcurrentQueue_1 as ConcurrentQueue } from './System.Collections.Concurrent/internal/index.js';
|
|
22
22
|
export type IProducerConsumerCollection<T> = Internal.IProducerConsumerCollection_1<T>;
|
|
23
23
|
|
|
24
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
25
|
+
export const Partitioner: typeof Internal.Partitioner$instance;
|
|
26
|
+
|
|
24
27
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
25
28
|
declare const __unspecified: unique symbol;
|
|
26
29
|
export type __ = typeof __unspecified;
|
|
@@ -16,3 +16,6 @@ export { FrozenDictionary$instance as FrozenDictionary_0 } from './System.Collec
|
|
|
16
16
|
export { FrozenDictionary_2 as FrozenDictionary } from './System.Collections.Frozen/internal/index.js';
|
|
17
17
|
export { FrozenSet$instance as FrozenSet_0 } from './System.Collections.Frozen/internal/index.js';
|
|
18
18
|
export { FrozenSet_1 as FrozenSet } from './System.Collections.Frozen/internal/index.js';
|
|
19
|
+
// Extension methods (C# using semantics)
|
|
20
|
+
export type { ExtensionMethods_System_Collections_Frozen as ExtensionMethods } from './__internal/extensions/index.js';
|
|
21
|
+
|
|
@@ -59,3 +59,6 @@ export { List_1 as List } from './System.Collections.Generic/internal/index.js';
|
|
|
59
59
|
export { Queue_1 as Queue } from './System.Collections.Generic/internal/index.js';
|
|
60
60
|
export { ReferenceEqualityComparer as ReferenceEqualityComparer } from './System.Collections.Generic/internal/index.js';
|
|
61
61
|
export { NonRandomizedStringEqualityComparer as NonRandomizedStringEqualityComparer } from './System.Collections.Generic/internal/index.js';
|
|
62
|
+
// Extension methods (C# using semantics)
|
|
63
|
+
export type { ExtensionMethods_System_Collections_Generic as ExtensionMethods } from './__internal/extensions/index.js';
|
|
64
|
+
|
|
@@ -33,3 +33,6 @@ export { ImmutableSortedSet$instance as ImmutableSortedSet_0 } from './System.Co
|
|
|
33
33
|
export { ImmutableSortedSet_1 as ImmutableSortedSet } from './System.Collections.Immutable/internal/index.js';
|
|
34
34
|
export { ImmutableStack$instance as ImmutableStack_0 } from './System.Collections.Immutable/internal/index.js';
|
|
35
35
|
export { ImmutableStack_1 as ImmutableStack } from './System.Collections.Immutable/internal/index.js';
|
|
36
|
+
// Extension methods (C# using semantics)
|
|
37
|
+
export type { ExtensionMethods_System_Collections_Immutable as ExtensionMethods } from './__internal/extensions/index.js';
|
|
38
|
+
|
|
@@ -20,6 +20,9 @@ export { Collection_1 as Collection } from './System.Collections.ObjectModel/int
|
|
|
20
20
|
export { ReadOnlyDictionary_2 as ReadOnlyDictionary } from './System.Collections.ObjectModel/internal/index.js';
|
|
21
21
|
export { ReadOnlySet_1 as ReadOnlySet } from './System.Collections.ObjectModel/internal/index.js';
|
|
22
22
|
|
|
23
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
24
|
+
export const ReadOnlyCollection: typeof Internal.ReadOnlyCollection$instance;
|
|
25
|
+
|
|
23
26
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
24
27
|
declare const __unspecified: unique symbol;
|
|
25
28
|
export type __ = typeof __unspecified;
|
package/System.Data.Common.d.ts
CHANGED
|
@@ -60,3 +60,6 @@ export { RowUpdatingEventArgs as RowUpdatingEventArgs } from './System.Data.Comm
|
|
|
60
60
|
export { SchemaTableColumn$instance as SchemaTableColumn } from './System.Data.Common/internal/index.js';
|
|
61
61
|
export { SchemaTableOptionalColumn$instance as SchemaTableOptionalColumn } from './System.Data.Common/internal/index.js';
|
|
62
62
|
export { SupportedJoinOperators as SupportedJoinOperators } from './System.Data.Common/internal/index.js';
|
|
63
|
+
// Extension methods (C# using semantics)
|
|
64
|
+
export type { ExtensionMethods_System_Data_Common as ExtensionMethods } from './__internal/extensions/index.js';
|
|
65
|
+
|
package/System.Data.d.ts
CHANGED
|
@@ -128,6 +128,10 @@ export { InvalidExpressionException as InvalidExpressionException } from './Syst
|
|
|
128
128
|
export { EvaluateException as EvaluateException } from './System.Data/internal/index.js';
|
|
129
129
|
export { SyntaxErrorException as SyntaxErrorException } from './System.Data/internal/index.js';
|
|
130
130
|
|
|
131
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
132
|
+
export const DataRowComparer: typeof Internal.DataRowComparer$instance;
|
|
133
|
+
export const EnumerableRowCollection: typeof Internal.EnumerableRowCollection;
|
|
134
|
+
|
|
131
135
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
132
136
|
declare const __unspecified: unique symbol;
|
|
133
137
|
export type __ = typeof __unspecified;
|
|
@@ -144,3 +148,6 @@ export type EnumerableRowCollection<
|
|
|
144
148
|
[T1] extends [__] ? Internal.EnumerableRowCollection :
|
|
145
149
|
Internal.EnumerableRowCollection_1<T1>;
|
|
146
150
|
|
|
151
|
+
// Extension methods (C# using semantics)
|
|
152
|
+
export type { ExtensionMethods_System_Data as ExtensionMethods } from './__internal/extensions/index.js';
|
|
153
|
+
|
|
@@ -30,6 +30,9 @@ export { ObservableInstrument_1 as ObservableInstrument } from './System.Diagnos
|
|
|
30
30
|
export { ObservableUpDownCounter_1 as ObservableUpDownCounter } from './System.Diagnostics.Metrics/internal/index.js';
|
|
31
31
|
export { UpDownCounter_1 as UpDownCounter } from './System.Diagnostics.Metrics/internal/index.js';
|
|
32
32
|
|
|
33
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
34
|
+
export const Instrument: typeof Internal.Instrument;
|
|
35
|
+
|
|
33
36
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
34
37
|
declare const __unspecified: unique symbol;
|
|
35
38
|
export type __ = typeof __unspecified;
|
|
@@ -40,3 +43,6 @@ export type Instrument<
|
|
|
40
43
|
[T1] extends [__] ? Internal.Instrument :
|
|
41
44
|
[T1] extends [unknown] ? Internal.Instrument_1<T1> : never;
|
|
42
45
|
|
|
46
|
+
// Extension methods (C# using semantics)
|
|
47
|
+
export type { ExtensionMethods_System_Diagnostics_Metrics as ExtensionMethods } from './__internal/extensions/index.js';
|
|
48
|
+
|
package/System.Diagnostics.d.ts
CHANGED
|
@@ -116,3 +116,6 @@ export { StackFrameExtensions$instance as StackFrameExtensions } from './System.
|
|
|
116
116
|
export { StackTraceHiddenAttribute as StackTraceHiddenAttribute } from './System.Diagnostics/internal/index.js';
|
|
117
117
|
export { Stopwatch as Stopwatch } from './System.Diagnostics/internal/index.js';
|
|
118
118
|
export { UnreachableException as UnreachableException } from './System.Diagnostics/internal/index.js';
|
|
119
|
+
// Extension methods (C# using semantics)
|
|
120
|
+
export type { ExtensionMethods_System_Diagnostics as ExtensionMethods } from './__internal/extensions/index.js';
|
|
121
|
+
|
|
@@ -55,3 +55,6 @@ export { ThaiBuddhistCalendar as ThaiBuddhistCalendar } from './System.Globaliza
|
|
|
55
55
|
export { TimeSpanStyles as TimeSpanStyles } from './System.Globalization/internal/index.js';
|
|
56
56
|
export { UmAlQuraCalendar as UmAlQuraCalendar } from './System.Globalization/internal/index.js';
|
|
57
57
|
export { UnicodeCategory as UnicodeCategory } from './System.Globalization/internal/index.js';
|
|
58
|
+
// Extension methods (C# using semantics)
|
|
59
|
+
export type { ExtensionMethods_System_Globalization as ExtensionMethods } from './__internal/extensions/index.js';
|
|
60
|
+
|
|
@@ -35,3 +35,6 @@ export { BrotliDecoder as BrotliDecoder } from './System.IO.Compression/internal
|
|
|
35
35
|
export { BrotliEncoder as BrotliEncoder } from './System.IO.Compression/internal/index.js';
|
|
36
36
|
export { ZipFile$instance as ZipFile } from './System.IO.Compression/internal/index.js';
|
|
37
37
|
export { ZipFileExtensions$instance as ZipFileExtensions } from './System.IO.Compression/internal/index.js';
|
|
38
|
+
// Extension methods (C# using semantics)
|
|
39
|
+
export type { ExtensionMethods_System_IO_Compression as ExtensionMethods } from './__internal/extensions/index.js';
|
|
40
|
+
|
package/System.IO.Pipelines.d.ts
CHANGED
|
@@ -24,3 +24,6 @@ export { ReadResult as ReadResult } from './System.IO.Pipelines/internal/index.j
|
|
|
24
24
|
export { StreamPipeExtensions$instance as StreamPipeExtensions } from './System.IO.Pipelines/internal/index.js';
|
|
25
25
|
export { StreamPipeReaderOptions as StreamPipeReaderOptions } from './System.IO.Pipelines/internal/index.js';
|
|
26
26
|
export { StreamPipeWriterOptions as StreamPipeWriterOptions } from './System.IO.Pipelines/internal/index.js';
|
|
27
|
+
// Extension methods (C# using semantics)
|
|
28
|
+
export type { ExtensionMethods_System_IO_Pipelines as ExtensionMethods } from './__internal/extensions/index.js';
|
|
29
|
+
|
package/System.IO.Pipes.d.ts
CHANGED
|
@@ -33,3 +33,6 @@ export { PipeAccessRule as PipeAccessRule } from './System.IO.Pipes/internal/ind
|
|
|
33
33
|
export { PipeAuditRule as PipeAuditRule } from './System.IO.Pipes/internal/index.js';
|
|
34
34
|
export { PipeSecurity as PipeSecurity } from './System.IO.Pipes/internal/index.js';
|
|
35
35
|
export { PipesAclExtensions$instance as PipesAclExtensions } from './System.IO.Pipes/internal/index.js';
|
|
36
|
+
// Extension methods (C# using semantics)
|
|
37
|
+
export type { ExtensionMethods_System_IO_Pipes as ExtensionMethods } from './__internal/extensions/index.js';
|
|
38
|
+
|
package/System.IO.d.ts
CHANGED
|
@@ -77,3 +77,6 @@ export { TextWriter as TextWriter } from './System.IO/internal/index.js';
|
|
|
77
77
|
export { UnixFileMode as UnixFileMode } from './System.IO/internal/index.js';
|
|
78
78
|
export { UnmanagedMemoryAccessor as UnmanagedMemoryAccessor } from './System.IO/internal/index.js';
|
|
79
79
|
export { UnmanagedMemoryStream as UnmanagedMemoryStream } from './System.IO/internal/index.js';
|
|
80
|
+
// Extension methods (C# using semantics)
|
|
81
|
+
export type { ExtensionMethods_System_IO as ExtensionMethods } from './__internal/extensions/index.js';
|
|
82
|
+
|
|
@@ -674,7 +674,7 @@ export const Expression_1: {
|
|
|
674
674
|
};
|
|
675
675
|
|
|
676
676
|
|
|
677
|
-
export type Expression_1<TDelegate> = Expression_1$instance<TDelegate>;
|
|
677
|
+
export type Expression_1<TDelegate> = TDelegate | Expression_1$instance<TDelegate>;
|
|
678
678
|
|
|
679
679
|
export interface ExpressionVisitor$instance {
|
|
680
680
|
visit(node: Expression): Expression | undefined;
|
|
@@ -55,6 +55,9 @@ export { UnaryExpression as UnaryExpression } from './System.Linq.Expressions/in
|
|
|
55
55
|
export { DynamicExpressionVisitor as DynamicExpressionVisitor } from './System.Linq.Expressions/internal/index.js';
|
|
56
56
|
export { DynamicExpression as DynamicExpression } from './System.Linq.Expressions/internal/index.js';
|
|
57
57
|
|
|
58
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
59
|
+
export const Expression: typeof Internal.Expression;
|
|
60
|
+
|
|
58
61
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
59
62
|
declare const __unspecified: unique symbol;
|
|
60
63
|
export type __ = typeof __unspecified;
|
package/System.Linq.d.ts
CHANGED
|
@@ -32,6 +32,11 @@ export { ParallelExecutionMode as ParallelExecutionMode } from './System.Linq/in
|
|
|
32
32
|
export { ParallelMergeOptions as ParallelMergeOptions } from './System.Linq/internal/index.js';
|
|
33
33
|
export { Queryable$instance as Queryable } from './System.Linq/internal/index.js';
|
|
34
34
|
|
|
35
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
36
|
+
export const EnumerableExecutor: typeof Internal.EnumerableExecutor;
|
|
37
|
+
export const EnumerableQuery: typeof Internal.EnumerableQuery;
|
|
38
|
+
export const ParallelQuery: typeof Internal.ParallelQuery;
|
|
39
|
+
|
|
35
40
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
36
41
|
declare const __unspecified: unique symbol;
|
|
37
42
|
export type __ = typeof __unspecified;
|
|
@@ -66,3 +71,6 @@ export type ParallelQuery<
|
|
|
66
71
|
[T1] extends [__] ? Internal.ParallelQuery :
|
|
67
72
|
Internal.ParallelQuery_1<T1>;
|
|
68
73
|
|
|
74
|
+
// Extension methods (C# using semantics)
|
|
75
|
+
export type { ExtensionMethods_System_Linq as ExtensionMethods } from './__internal/extensions/index.js';
|
|
76
|
+
|
|
@@ -22,3 +22,6 @@ import type { Boolean as ClrBoolean, Byte, IDisposable, Int32, Int64, Object as
|
|
|
22
22
|
export { HttpClientJsonExtensions$instance as HttpClientJsonExtensions } from './System.Net.Http.Json/internal/index.js';
|
|
23
23
|
export { HttpContentJsonExtensions$instance as HttpContentJsonExtensions } from './System.Net.Http.Json/internal/index.js';
|
|
24
24
|
export { JsonContent as JsonContent } from './System.Net.Http.Json/internal/index.js';
|
|
25
|
+
// Extension methods (C# using semantics)
|
|
26
|
+
export type { ExtensionMethods_System_Net_Http_Json as ExtensionMethods } from './__internal/extensions/index.js';
|
|
27
|
+
|
|
@@ -20,6 +20,9 @@ export { SseFormatter$instance as SseFormatter } from './System.Net.ServerSentEv
|
|
|
20
20
|
export { SseItem_1 as SseItem } from './System.Net.ServerSentEvents/internal/index.js';
|
|
21
21
|
export type SseItemParser<T> = Internal.SseItemParser_1<T>;
|
|
22
22
|
|
|
23
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
24
|
+
export const SseParser: typeof Internal.SseParser$instance;
|
|
25
|
+
|
|
23
26
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
24
27
|
declare const __unspecified: unique symbol;
|
|
25
28
|
export type __ = typeof __unspecified;
|
package/System.Net.Sockets.d.ts
CHANGED
|
@@ -53,3 +53,6 @@ export { UnixDomainSocketEndPoint as UnixDomainSocketEndPoint } from './System.N
|
|
|
53
53
|
export { ProtocolFamily as ProtocolFamily } from './System.Net.Sockets/internal/index.js';
|
|
54
54
|
export { ProtocolType as ProtocolType } from './System.Net.Sockets/internal/index.js';
|
|
55
55
|
export { SocketType as SocketType } from './System.Net.Sockets/internal/index.js';
|
|
56
|
+
// Extension methods (C# using semantics)
|
|
57
|
+
export type { ExtensionMethods_System_Net_Sockets as ExtensionMethods } from './__internal/extensions/index.js';
|
|
58
|
+
|
package/System.Numerics.d.ts
CHANGED
|
@@ -55,6 +55,9 @@ export type IUnsignedNumber<TSelf extends Internal.IUnsignedNumber_1<TSelf>> = I
|
|
|
55
55
|
export { BigInteger as BigInteger } from './System.Numerics/internal/index.js';
|
|
56
56
|
export { Complex as Complex } from './System.Numerics/internal/index.js';
|
|
57
57
|
|
|
58
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
59
|
+
export const Vector: typeof Internal.Vector$instance;
|
|
60
|
+
|
|
58
61
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
59
62
|
declare const __unspecified: unique symbol;
|
|
60
63
|
export type __ = typeof __unspecified;
|
|
@@ -65,3 +68,6 @@ export type Vector<
|
|
|
65
68
|
[T1] extends [__] ? Internal.Vector :
|
|
66
69
|
Internal.Vector_1<T1>;
|
|
67
70
|
|
|
71
|
+
// Extension methods (C# using semantics)
|
|
72
|
+
export type { ExtensionMethods_System_Numerics as ExtensionMethods } from './__internal/extensions/index.js';
|
|
73
|
+
|
|
@@ -60,3 +60,6 @@ export { MetadataReaderExtensions$instance as MetadataReaderExtensions } from '.
|
|
|
60
60
|
export { MetadataTokens$instance as MetadataTokens } from './System.Reflection.Metadata.Ecma335/internal/index.js';
|
|
61
61
|
export { TableIndex as TableIndex } from './System.Reflection.Metadata.Ecma335/internal/index.js';
|
|
62
62
|
export { MetadataAggregator as MetadataAggregator } from './System.Reflection.Metadata.Ecma335/internal/index.js';
|
|
63
|
+
// Extension methods (C# using semantics)
|
|
64
|
+
export type { ExtensionMethods_System_Reflection_Metadata_Ecma335 as ExtensionMethods } from './__internal/extensions/index.js';
|
|
65
|
+
|
|
@@ -206,3 +206,6 @@ export { TypeDefinition as TypeDefinition } from './System.Reflection.Metadata/i
|
|
|
206
206
|
export { TypeLayout as TypeLayout } from './System.Reflection.Metadata/internal/index.js';
|
|
207
207
|
export { TypeReference as TypeReference } from './System.Reflection.Metadata/internal/index.js';
|
|
208
208
|
export { TypeSpecification as TypeSpecification } from './System.Reflection.Metadata/internal/index.js';
|
|
209
|
+
// Extension methods (C# using semantics)
|
|
210
|
+
export type { ExtensionMethods_System_Reflection_Metadata as ExtensionMethods } from './__internal/extensions/index.js';
|
|
211
|
+
|
package/System.Reflection.d.ts
CHANGED
|
@@ -122,3 +122,6 @@ export { MemberInfoExtensions$instance as MemberInfoExtensions } from './System.
|
|
|
122
122
|
export { MethodInfoExtensions$instance as MethodInfoExtensions } from './System.Reflection/internal/index.js';
|
|
123
123
|
export { ModuleExtensions$instance as ModuleExtensions } from './System.Reflection/internal/index.js';
|
|
124
124
|
export { PropertyInfoExtensions$instance as PropertyInfoExtensions } from './System.Reflection/internal/index.js';
|
|
125
|
+
// Extension methods (C# using semantics)
|
|
126
|
+
export type { ExtensionMethods_System_Reflection as ExtensionMethods } from './__internal/extensions/index.js';
|
|
127
|
+
|
|
@@ -172,6 +172,14 @@ export { CompilerMarshalOverride$instance as CompilerMarshalOverride } from './S
|
|
|
172
172
|
export { IDispatchConstantAttribute as IDispatchConstantAttribute } from './System.Runtime.CompilerServices/internal/index.js';
|
|
173
173
|
export { IUnknownConstantAttribute as IUnknownConstantAttribute } from './System.Runtime.CompilerServices/internal/index.js';
|
|
174
174
|
|
|
175
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
176
|
+
export const AsyncTaskMethodBuilder: typeof Internal.AsyncTaskMethodBuilder;
|
|
177
|
+
export const AsyncValueTaskMethodBuilder: typeof Internal.AsyncValueTaskMethodBuilder;
|
|
178
|
+
export const CallSite: typeof Internal.CallSite;
|
|
179
|
+
export const PoolingAsyncValueTaskMethodBuilder: typeof Internal.PoolingAsyncValueTaskMethodBuilder;
|
|
180
|
+
export const TaskAwaiter: typeof Internal.TaskAwaiter;
|
|
181
|
+
export const ValueTaskAwaiter: typeof Internal.ValueTaskAwaiter;
|
|
182
|
+
|
|
175
183
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
176
184
|
declare const __unspecified: unique symbol;
|
|
177
185
|
export type __ = typeof __unspecified;
|
|
@@ -40,6 +40,9 @@ export { JSType_Any as JSType_Any } from './System.Runtime.InteropServices.JavaS
|
|
|
40
40
|
export type JSMarshalerArgument_ArgumentToManagedCallback<T> = Internal.JSMarshalerArgument_ArgumentToManagedCallback_1<T>;
|
|
41
41
|
export type JSMarshalerArgument_ArgumentToJSCallback<T> = Internal.JSMarshalerArgument_ArgumentToJSCallback_1<T>;
|
|
42
42
|
|
|
43
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
44
|
+
export const JSType_Function: typeof Internal.JSType_Function;
|
|
45
|
+
|
|
43
46
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
44
47
|
declare const __unspecified: unique symbol;
|
|
45
48
|
export type __ = typeof __unspecified;
|
|
@@ -12,6 +12,9 @@ import type { Boolean as ClrBoolean, Int32, Object as ClrObject, String as ClrSt
|
|
|
12
12
|
export { SwiftError as SwiftError } from './System.Runtime.InteropServices.Swift/internal/index.js';
|
|
13
13
|
export { SwiftIndirectResult as SwiftIndirectResult } from './System.Runtime.InteropServices.Swift/internal/index.js';
|
|
14
14
|
|
|
15
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
16
|
+
export const SwiftSelf: typeof Internal.SwiftSelf;
|
|
17
|
+
|
|
15
18
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
16
19
|
declare const __unspecified: unique symbol;
|
|
17
20
|
export type __ = typeof __unspecified;
|
|
@@ -150,6 +150,9 @@ export { TypeLibVarFlags as TypeLibVarFlags } from './System.Runtime.InteropServ
|
|
|
150
150
|
export { TypeLibVersionAttribute as TypeLibVersionAttribute } from './System.Runtime.InteropServices/internal/index.js';
|
|
151
151
|
export { JsonMarshal$instance as JsonMarshal } from './System.Runtime.InteropServices/internal/index.js';
|
|
152
152
|
|
|
153
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
154
|
+
export const GCHandle: typeof Internal.GCHandle;
|
|
155
|
+
|
|
153
156
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
154
157
|
declare const __unspecified: unique symbol;
|
|
155
158
|
export type __ = typeof __unspecified;
|
|
@@ -160,3 +163,6 @@ export type GCHandle<
|
|
|
160
163
|
[T1] extends [__] ? Internal.GCHandle :
|
|
161
164
|
Internal.GCHandle_1<T1>;
|
|
162
165
|
|
|
166
|
+
// Extension methods (C# using semantics)
|
|
167
|
+
export type { ExtensionMethods_System_Runtime_InteropServices as ExtensionMethods } from './__internal/extensions/index.js';
|
|
168
|
+
|
|
@@ -11,6 +11,12 @@ import type { Boolean as ClrBoolean, Byte, Double, IEquatable_1, Int16, Int32, I
|
|
|
11
11
|
|
|
12
12
|
// Public API exports (curated - no internal $instance/$views leakage)
|
|
13
13
|
|
|
14
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
15
|
+
export const Vector128: typeof Internal.Vector128$instance;
|
|
16
|
+
export const Vector256: typeof Internal.Vector256$instance;
|
|
17
|
+
export const Vector512: typeof Internal.Vector512$instance;
|
|
18
|
+
export const Vector64: typeof Internal.Vector64$instance;
|
|
19
|
+
|
|
14
20
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
15
21
|
declare const __unspecified: unique symbol;
|
|
16
22
|
export type __ = typeof __unspecified;
|
|
@@ -39,3 +45,6 @@ export type Vector64<
|
|
|
39
45
|
[T1] extends [__] ? Internal.Vector64 :
|
|
40
46
|
Internal.Vector64_1<T1>;
|
|
41
47
|
|
|
48
|
+
// Extension methods (C# using semantics)
|
|
49
|
+
export type { ExtensionMethods_System_Runtime_Intrinsics as ExtensionMethods } from './__internal/extensions/index.js';
|
|
50
|
+
|
|
@@ -21,3 +21,6 @@ export { DataContractJsonSerializerSettings as DataContractJsonSerializerSetting
|
|
|
21
21
|
export type IXmlJsonReaderInitializer = Internal.IXmlJsonReaderInitializer;
|
|
22
22
|
export type IXmlJsonWriterInitializer = Internal.IXmlJsonWriterInitializer;
|
|
23
23
|
export { JsonReaderWriterFactory$instance as JsonReaderWriterFactory } from './System.Runtime.Serialization.Json/internal/index.js';
|
|
24
|
+
// Extension methods (C# using semantics)
|
|
25
|
+
export type { ExtensionMethods_System_Runtime_Serialization_Json as ExtensionMethods } from './__internal/extensions/index.js';
|
|
26
|
+
|
|
@@ -74,3 +74,6 @@ export { InvalidDataContractException as InvalidDataContractException } from './
|
|
|
74
74
|
export type ISerializationSurrogateProvider2 = Internal.ISerializationSurrogateProvider2;
|
|
75
75
|
export type ISerializationSurrogateProvider = Internal.ISerializationSurrogateProvider;
|
|
76
76
|
export { KnownTypeAttribute as KnownTypeAttribute } from './System.Runtime.Serialization/internal/index.js';
|
|
77
|
+
// Extension methods (C# using semantics)
|
|
78
|
+
export type { ExtensionMethods_System_Runtime_Serialization as ExtensionMethods } from './__internal/extensions/index.js';
|
|
79
|
+
|
|
@@ -75,6 +75,11 @@ export { SemaphoreAuditRule as SemaphoreAuditRule } from './System.Security.Acce
|
|
|
75
75
|
export { SemaphoreRights as SemaphoreRights } from './System.Security.AccessControl/internal/index.js';
|
|
76
76
|
export { SemaphoreSecurity as SemaphoreSecurity } from './System.Security.AccessControl/internal/index.js';
|
|
77
77
|
|
|
78
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
79
|
+
export const AccessRule: typeof Internal.AccessRule;
|
|
80
|
+
export const AuditRule: typeof Internal.AuditRule;
|
|
81
|
+
export const ObjectSecurity: typeof Internal.ObjectSecurity;
|
|
82
|
+
|
|
78
83
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
79
84
|
declare const __unspecified: unique symbol;
|
|
80
85
|
export type __ = typeof __unspecified;
|
|
@@ -76,3 +76,6 @@ export { X509SubjectAlternativeNameExtension as X509SubjectAlternativeNameExtens
|
|
|
76
76
|
export { X509SubjectKeyIdentifierExtension as X509SubjectKeyIdentifierExtension } from './System.Security.Cryptography.X509Certificates/internal/index.js';
|
|
77
77
|
export { X509SubjectKeyIdentifierHashAlgorithm as X509SubjectKeyIdentifierHashAlgorithm } from './System.Security.Cryptography.X509Certificates/internal/index.js';
|
|
78
78
|
export { X509VerificationFlags as X509VerificationFlags } from './System.Security.Cryptography.X509Certificates/internal/index.js';
|
|
79
|
+
// Extension methods (C# using semantics)
|
|
80
|
+
export type { ExtensionMethods_System_Security_Cryptography_X509Certificates as ExtensionMethods } from './__internal/extensions/index.js';
|
|
81
|
+
|
|
@@ -15,3 +15,6 @@ import type { Boolean as ClrBoolean, Func_3, Int32, Object as ClrObject, ReadOnl
|
|
|
15
15
|
export { JsonSchemaExporter$instance as JsonSchemaExporter } from './System.Text.Json.Schema/internal/index.js';
|
|
16
16
|
export { JsonSchemaExporterOptions as JsonSchemaExporterOptions } from './System.Text.Json.Schema/internal/index.js';
|
|
17
17
|
export { JsonSchemaExporterContext as JsonSchemaExporterContext } from './System.Text.Json.Schema/internal/index.js';
|
|
18
|
+
// Extension methods (C# using semantics)
|
|
19
|
+
export type { ExtensionMethods_System_Text_Json_Schema as ExtensionMethods } from './__internal/extensions/index.js';
|
|
20
|
+
|
|
@@ -30,6 +30,9 @@ export { JsonParameterInfo as JsonParameterInfo } from './System.Text.Json.Seria
|
|
|
30
30
|
export { JsonPropertyInfo as JsonPropertyInfo } from './System.Text.Json.Serialization.Metadata/internal/index.js';
|
|
31
31
|
export { JsonPropertyInfoValues_1 as JsonPropertyInfoValues } from './System.Text.Json.Serialization.Metadata/internal/index.js';
|
|
32
32
|
|
|
33
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
34
|
+
export const JsonTypeInfo: typeof Internal.JsonTypeInfo;
|
|
35
|
+
|
|
33
36
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
34
37
|
declare const __unspecified: unique symbol;
|
|
35
38
|
export type __ = typeof __unspecified;
|
|
@@ -40,3 +43,6 @@ export type JsonTypeInfo<
|
|
|
40
43
|
[T1] extends [__] ? Internal.JsonTypeInfo :
|
|
41
44
|
Internal.JsonTypeInfo_1<T1>;
|
|
42
45
|
|
|
46
|
+
// Extension methods (C# using semantics)
|
|
47
|
+
export type { ExtensionMethods_System_Text_Json_Serialization_Metadata as ExtensionMethods } from './__internal/extensions/index.js';
|
|
48
|
+
|
|
@@ -46,6 +46,11 @@ export { JsonConverterFactory as JsonConverterFactory } from './System.Text.Json
|
|
|
46
46
|
export { JsonStringEnumMemberNameAttribute as JsonStringEnumMemberNameAttribute } from './System.Text.Json.Serialization/internal/index.js';
|
|
47
47
|
export { ReferenceResolver as ReferenceResolver } from './System.Text.Json.Serialization/internal/index.js';
|
|
48
48
|
|
|
49
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
50
|
+
export const JsonConverter: typeof Internal.JsonConverter;
|
|
51
|
+
export const JsonStringEnumConverter: typeof Internal.JsonStringEnumConverter;
|
|
52
|
+
export const ReferenceHandler: typeof Internal.ReferenceHandler;
|
|
53
|
+
|
|
49
54
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
50
55
|
declare const __unspecified: unique symbol;
|
|
51
56
|
export type __ = typeof __unspecified;
|
package/System.Text.Json.d.ts
CHANGED
|
@@ -42,3 +42,6 @@ export { JsonSerializer$instance as JsonSerializer } from './System.Text.Json/in
|
|
|
42
42
|
export { Utf8JsonWriter as Utf8JsonWriter } from './System.Text.Json/internal/index.js';
|
|
43
43
|
export { JsonSerializerOptions as JsonSerializerOptions } from './System.Text.Json/internal/index.js';
|
|
44
44
|
export { JsonWriterOptions as JsonWriterOptions } from './System.Text.Json/internal/index.js';
|
|
45
|
+
// Extension methods (C# using semantics)
|
|
46
|
+
export type { ExtensionMethods_System_Text_Json as ExtensionMethods } from './__internal/extensions/index.js';
|
|
47
|
+
|
package/System.Text.d.ts
CHANGED
|
@@ -52,3 +52,6 @@ export { UTF32Encoding as UTF32Encoding } from './System.Text/internal/index.js'
|
|
|
52
52
|
export { UTF7Encoding as UTF7Encoding } from './System.Text/internal/index.js';
|
|
53
53
|
export { UTF8Encoding as UTF8Encoding } from './System.Text/internal/index.js';
|
|
54
54
|
export { CodePagesEncodingProvider as CodePagesEncodingProvider } from './System.Text/internal/index.js';
|
|
55
|
+
// Extension methods (C# using semantics)
|
|
56
|
+
export type { ExtensionMethods_System_Text as ExtensionMethods } from './__internal/extensions/index.js';
|
|
57
|
+
|
|
@@ -24,6 +24,9 @@ export { ChannelReader_1 as ChannelReader } from './System.Threading.Channels/in
|
|
|
24
24
|
export { ChannelWriter_1 as ChannelWriter } from './System.Threading.Channels/internal/index.js';
|
|
25
25
|
export { UnboundedPrioritizedChannelOptions_1 as UnboundedPrioritizedChannelOptions } from './System.Threading.Channels/internal/index.js';
|
|
26
26
|
|
|
27
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
28
|
+
export const Channel: typeof Internal.Channel$instance;
|
|
29
|
+
|
|
27
30
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
28
31
|
declare const __unspecified: unique symbol;
|
|
29
32
|
export type __ = typeof __unspecified;
|
|
@@ -32,6 +32,8 @@ export { TransformBlock_2 as TransformBlock } from './System.Threading.Tasks.Dat
|
|
|
32
32
|
export { TransformManyBlock_2 as TransformManyBlock } from './System.Threading.Tasks.Dataflow/internal/index.js';
|
|
33
33
|
export { WriteOnceBlock_1 as WriteOnceBlock } from './System.Threading.Tasks.Dataflow/internal/index.js';
|
|
34
34
|
|
|
35
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
36
|
+
|
|
35
37
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
36
38
|
declare const __unspecified: unique symbol;
|
|
37
39
|
export type __ = typeof __unspecified;
|
|
@@ -52,3 +54,6 @@ export type JoinBlock<
|
|
|
52
54
|
[T3] extends [__] ? Internal.JoinBlock_2<T1, T2> :
|
|
53
55
|
Internal.JoinBlock_3<T1, T2, T3>;
|
|
54
56
|
|
|
57
|
+
// Extension methods (C# using semantics)
|
|
58
|
+
export type { ExtensionMethods_System_Threading_Tasks_Dataflow as ExtensionMethods } from './__internal/extensions/index.js';
|
|
59
|
+
|
|
@@ -13,6 +13,8 @@ export { ValueTaskSourceOnCompletedFlags as ValueTaskSourceOnCompletedFlags } fr
|
|
|
13
13
|
export { ValueTaskSourceStatus as ValueTaskSourceStatus } from './System.Threading.Tasks.Sources/internal/index.js';
|
|
14
14
|
export { ManualResetValueTaskSourceCore_1 as ManualResetValueTaskSourceCore } from './System.Threading.Tasks.Sources/internal/index.js';
|
|
15
15
|
|
|
16
|
+
// Multi-arity family value exports (arity-0 constructors/static namespaces)
|
|
17
|
+
|
|
16
18
|
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
17
19
|
declare const __unspecified: unique symbol;
|
|
18
20
|
export type __ = typeof __unspecified;
|