@tsonic/dotnet 10.0.4 → 10.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +10 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +42 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +60 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +12 -0
- package/Microsoft.Win32/internal/index.d.ts +5 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +68 -0
- package/System/internal/index.d.ts +1438 -161
- package/System.Buffers/internal/index.d.ts +42 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +7 -0
- package/System.Collections/internal/index.d.ts +109 -27
- package/System.Collections.Concurrent/internal/index.d.ts +52 -3
- package/System.Collections.Frozen/internal/index.d.ts +37 -0
- package/System.Collections.Generic/internal/index.d.ts +422 -33
- package/System.Collections.Immutable/internal/index.d.ts +193 -2
- package/System.Collections.ObjectModel/internal/index.d.ts +98 -6
- package/System.Collections.Specialized/internal/index.d.ts +72 -10
- package/System.ComponentModel/internal/index.d.ts +392 -23
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +79 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +120 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +40 -0
- package/System.Data/internal/index.d.ts +273 -20
- package/System.Data.Common/internal/index.d.ts +146 -32
- package/System.Data.SqlTypes/internal/index.d.ts +147 -48
- package/System.Diagnostics/internal/index.d.ts +213 -13
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +28 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +37 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +30 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +56 -6
- package/System.Drawing/internal/index.d.ts +38 -0
- package/System.Dynamic/internal/index.d.ts +50 -5
- package/System.Formats.Asn1/internal/index.d.ts +19 -3
- package/System.Formats.Tar/internal/index.d.ts +26 -6
- package/System.Globalization/internal/index.d.ts +116 -20
- package/System.IO/internal/index.d.ts +141 -18
- package/System.IO.Compression/internal/index.d.ts +46 -9
- package/System.IO.Enumeration/internal/index.d.ts +13 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +18 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +13 -0
- package/System.IO.Pipelines/internal/index.d.ts +22 -2
- package/System.IO.Pipes/internal/index.d.ts +31 -0
- package/System.Linq/internal/index.d.ts +55 -7
- package/System.Linq.Expressions/internal/index.d.ts +103 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +202 -21
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +103 -0
- package/System.Net.Http.Headers/internal/index.d.ts +151 -60
- package/System.Net.Http.Json/internal/index.d.ts +4 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +88 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +89 -0
- package/System.Net.Quic/internal/index.d.ts +31 -6
- package/System.Net.Security/internal/index.d.ts +40 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +59 -6
- package/System.Net.WebSockets/internal/index.d.ts +32 -3
- package/System.Numerics/internal/index.d.ts +173 -7
- package/System.Reflection/internal/index.d.ts +202 -30
- package/System.Reflection.Emit/internal/index.d.ts +80 -9
- package/System.Reflection.Metadata/internal/index.d.ts +650 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +80 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +39 -3
- package/System.Resources/internal/index.d.ts +35 -1
- package/System.Runtime/internal/index.d.ts +18 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +330 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +268 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +82 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +59 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +82 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +56 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +9 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +111 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +5 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +8 -0
- package/System.Runtime.Versioning/internal/index.d.ts +28 -0
- package/System.Security/internal/index.d.ts +46 -6
- package/System.Security.AccessControl/internal/index.d.ts +116 -2
- package/System.Security.Authentication/internal/index.d.ts +8 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +16 -5
- package/System.Security.Claims/internal/index.d.ts +12 -6
- package/System.Security.Cryptography/internal/index.d.ts +568 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +114 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +7 -0
- package/System.Security.Principal/internal/index.d.ts +42 -5
- package/System.Text/internal/index.d.ts +108 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +53 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +21 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +64 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +27 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +75 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +186 -24
- package/System.Threading.Channels/internal/index.d.ts +20 -0
- package/System.Threading.Tasks/internal/index.d.ts +48 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +99 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +6 -0
- package/System.Timers/internal/index.d.ts +11 -3
- package/System.Transactions/internal/index.d.ts +76 -15
- package/System.Web/internal/index.d.ts +4 -0
- package/System.Windows.Input/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +245 -20
- package/System.Xml.Linq/internal/index.d.ts +73 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +171 -0
- package/System.Xml.Serialization/internal/index.d.ts +141 -0
- package/System.Xml.XPath/internal/index.d.ts +27 -8
- package/System.Xml.Xsl/internal/index.d.ts +27 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +112 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -78,6 +78,8 @@ export type RuntimeHelpers_TryCode = (userData: unknown) => void;
|
|
|
78
78
|
|
|
79
79
|
|
|
80
80
|
export interface IAsyncStateMachine$instance {
|
|
81
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_IAsyncStateMachine: never;
|
|
82
|
+
|
|
81
83
|
MoveNext(): void;
|
|
82
84
|
SetStateMachine(stateMachine: IAsyncStateMachine): void;
|
|
83
85
|
}
|
|
@@ -86,6 +88,8 @@ export interface IAsyncStateMachine$instance {
|
|
|
86
88
|
export type IAsyncStateMachine = IAsyncStateMachine$instance;
|
|
87
89
|
|
|
88
90
|
export interface ICriticalNotifyCompletion$instance extends INotifyCompletion {
|
|
91
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
92
|
+
|
|
89
93
|
UnsafeOnCompleted(continuation: Action): void;
|
|
90
94
|
OnCompleted(continuation: Action): void;
|
|
91
95
|
}
|
|
@@ -96,6 +100,8 @@ export interface ICriticalNotifyCompletion$instance extends INotifyCompletion$in
|
|
|
96
100
|
export type ICriticalNotifyCompletion = ICriticalNotifyCompletion$instance;
|
|
97
101
|
|
|
98
102
|
export interface INotifyCompletion$instance {
|
|
103
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
104
|
+
|
|
99
105
|
OnCompleted(continuation: Action): void;
|
|
100
106
|
}
|
|
101
107
|
|
|
@@ -103,6 +109,8 @@ export interface INotifyCompletion$instance {
|
|
|
103
109
|
export type INotifyCompletion = INotifyCompletion$instance;
|
|
104
110
|
|
|
105
111
|
export interface IRuntimeVariables$instance {
|
|
112
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_IRuntimeVariables: never;
|
|
113
|
+
|
|
106
114
|
readonly Count: int;
|
|
107
115
|
[index: number]: unknown | undefined;
|
|
108
116
|
}
|
|
@@ -111,6 +119,8 @@ export interface IRuntimeVariables$instance {
|
|
|
111
119
|
export type IRuntimeVariables = IRuntimeVariables$instance;
|
|
112
120
|
|
|
113
121
|
export interface IStrongBox$instance {
|
|
122
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_IStrongBox: never;
|
|
123
|
+
|
|
114
124
|
get Value(): unknown | undefined;
|
|
115
125
|
set Value(value: unknown | undefined);
|
|
116
126
|
}
|
|
@@ -119,6 +129,8 @@ export interface IStrongBox$instance {
|
|
|
119
129
|
export type IStrongBox = IStrongBox$instance;
|
|
120
130
|
|
|
121
131
|
export interface ITuple$instance {
|
|
132
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ITuple: never;
|
|
133
|
+
|
|
122
134
|
readonly Length: int;
|
|
123
135
|
readonly [index: number]: unknown | undefined;
|
|
124
136
|
}
|
|
@@ -127,6 +139,8 @@ export interface ITuple$instance {
|
|
|
127
139
|
export type ITuple = ITuple$instance;
|
|
128
140
|
|
|
129
141
|
export interface AsyncIteratorMethodBuilder$instance {
|
|
142
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncIteratorMethodBuilder: never;
|
|
143
|
+
|
|
130
144
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
131
145
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
132
146
|
Complete(): void;
|
|
@@ -143,6 +157,8 @@ export const AsyncIteratorMethodBuilder: {
|
|
|
143
157
|
export type AsyncIteratorMethodBuilder = AsyncIteratorMethodBuilder$instance;
|
|
144
158
|
|
|
145
159
|
export interface AsyncTaskMethodBuilder$instance {
|
|
160
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncTaskMethodBuilder: never;
|
|
161
|
+
|
|
146
162
|
readonly Task: Task;
|
|
147
163
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
148
164
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
@@ -162,6 +178,8 @@ export const AsyncTaskMethodBuilder: {
|
|
|
162
178
|
export type AsyncTaskMethodBuilder = AsyncTaskMethodBuilder$instance;
|
|
163
179
|
|
|
164
180
|
export interface AsyncTaskMethodBuilder_1$instance<TResult> {
|
|
181
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncTaskMethodBuilder_1: never;
|
|
182
|
+
|
|
165
183
|
readonly Task: Task_1<TResult>;
|
|
166
184
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
167
185
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
@@ -181,6 +199,8 @@ export const AsyncTaskMethodBuilder_1: {
|
|
|
181
199
|
export type AsyncTaskMethodBuilder_1<TResult> = AsyncTaskMethodBuilder_1$instance<TResult>;
|
|
182
200
|
|
|
183
201
|
export interface AsyncValueTaskMethodBuilder$instance {
|
|
202
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncValueTaskMethodBuilder: never;
|
|
203
|
+
|
|
184
204
|
readonly Task: ValueTask;
|
|
185
205
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
186
206
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
@@ -200,6 +220,8 @@ export const AsyncValueTaskMethodBuilder: {
|
|
|
200
220
|
export type AsyncValueTaskMethodBuilder = AsyncValueTaskMethodBuilder$instance;
|
|
201
221
|
|
|
202
222
|
export interface AsyncValueTaskMethodBuilder_1$instance<TResult> {
|
|
223
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncValueTaskMethodBuilder_1: never;
|
|
224
|
+
|
|
203
225
|
readonly Task: ValueTask_1<TResult>;
|
|
204
226
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
205
227
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
@@ -219,6 +241,8 @@ export const AsyncValueTaskMethodBuilder_1: {
|
|
|
219
241
|
export type AsyncValueTaskMethodBuilder_1<TResult> = AsyncValueTaskMethodBuilder_1$instance<TResult>;
|
|
220
242
|
|
|
221
243
|
export interface AsyncVoidMethodBuilder$instance {
|
|
244
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncVoidMethodBuilder: never;
|
|
245
|
+
|
|
222
246
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
223
247
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
224
248
|
SetException(exception: Exception): void;
|
|
@@ -237,6 +261,8 @@ export const AsyncVoidMethodBuilder: {
|
|
|
237
261
|
export type AsyncVoidMethodBuilder = AsyncVoidMethodBuilder$instance;
|
|
238
262
|
|
|
239
263
|
export interface ConfiguredAsyncDisposable$instance {
|
|
264
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredAsyncDisposable: never;
|
|
265
|
+
|
|
240
266
|
DisposeAsync(): ConfiguredValueTaskAwaitable;
|
|
241
267
|
}
|
|
242
268
|
|
|
@@ -249,6 +275,8 @@ export const ConfiguredAsyncDisposable: {
|
|
|
249
275
|
export type ConfiguredAsyncDisposable = ConfiguredAsyncDisposable$instance;
|
|
250
276
|
|
|
251
277
|
export interface ConfiguredCancelableAsyncEnumerable_1$instance<T> {
|
|
278
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredCancelableAsyncEnumerable_1: never;
|
|
279
|
+
|
|
252
280
|
ConfigureAwait(continueOnCapturedContext: boolean): ConfiguredCancelableAsyncEnumerable_1<T>;
|
|
253
281
|
GetAsyncEnumerator(): ConfiguredCancelableAsyncEnumerable_1_Enumerator<T>;
|
|
254
282
|
WithCancellation(cancellationToken: CancellationToken): ConfiguredCancelableAsyncEnumerable_1<T>;
|
|
@@ -263,6 +291,8 @@ export const ConfiguredCancelableAsyncEnumerable_1: {
|
|
|
263
291
|
export type ConfiguredCancelableAsyncEnumerable_1<T> = ConfiguredCancelableAsyncEnumerable_1$instance<T>;
|
|
264
292
|
|
|
265
293
|
export interface ConfiguredCancelableAsyncEnumerable_1_Enumerator$instance<T> {
|
|
294
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredCancelableAsyncEnumerable_1_Enumerator: never;
|
|
295
|
+
|
|
266
296
|
readonly Current: T;
|
|
267
297
|
DisposeAsync(): ConfiguredValueTaskAwaitable;
|
|
268
298
|
MoveNextAsync(): ConfiguredValueTaskAwaitable_1<System_Internal.Boolean>;
|
|
@@ -277,6 +307,8 @@ export const ConfiguredCancelableAsyncEnumerable_1_Enumerator: {
|
|
|
277
307
|
export type ConfiguredCancelableAsyncEnumerable_1_Enumerator<T> = ConfiguredCancelableAsyncEnumerable_1_Enumerator$instance<T>;
|
|
278
308
|
|
|
279
309
|
export interface ConfiguredTaskAwaitable$instance {
|
|
310
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredTaskAwaitable: never;
|
|
311
|
+
|
|
280
312
|
GetAwaiter(): ConfiguredTaskAwaitable_ConfiguredTaskAwaiter;
|
|
281
313
|
}
|
|
282
314
|
|
|
@@ -289,6 +321,8 @@ export const ConfiguredTaskAwaitable: {
|
|
|
289
321
|
export type ConfiguredTaskAwaitable = ConfiguredTaskAwaitable$instance;
|
|
290
322
|
|
|
291
323
|
export interface ConfiguredTaskAwaitable_1$instance<TResult> {
|
|
324
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredTaskAwaitable_1: never;
|
|
325
|
+
|
|
292
326
|
GetAwaiter(): ConfiguredTaskAwaitable_1_ConfiguredTaskAwaiter<TResult>;
|
|
293
327
|
}
|
|
294
328
|
|
|
@@ -300,7 +334,13 @@ export const ConfiguredTaskAwaitable_1: {
|
|
|
300
334
|
|
|
301
335
|
export type ConfiguredTaskAwaitable_1<TResult> = ConfiguredTaskAwaitable_1$instance<TResult>;
|
|
302
336
|
|
|
303
|
-
export interface ConfiguredTaskAwaitable_1_ConfiguredTaskAwaiter$instance<TResult> extends ICriticalNotifyCompletion {
|
|
337
|
+
export interface ConfiguredTaskAwaitable_1_ConfiguredTaskAwaiter$instance<TResult> extends ICriticalNotifyCompletion, ICriticalNotifyCompletion$instance {
|
|
338
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredTaskAwaitable_1_ConfiguredTaskAwaiter: never;
|
|
339
|
+
|
|
340
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_IConfiguredTaskAwaiter: never;
|
|
341
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
342
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
343
|
+
|
|
304
344
|
readonly IsCompleted: boolean;
|
|
305
345
|
GetResult(): TResult;
|
|
306
346
|
OnCompleted(continuation: Action): void;
|
|
@@ -317,12 +357,16 @@ export interface __ConfiguredTaskAwaitable_1_ConfiguredTaskAwaiter$views<TResult
|
|
|
317
357
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
318
358
|
}
|
|
319
359
|
|
|
320
|
-
export interface ConfiguredTaskAwaitable_1_ConfiguredTaskAwaiter$instance<TResult> extends ICriticalNotifyCompletion$instance {}
|
|
321
|
-
|
|
322
360
|
export type ConfiguredTaskAwaitable_1_ConfiguredTaskAwaiter<TResult> = ConfiguredTaskAwaitable_1_ConfiguredTaskAwaiter$instance<TResult> & __ConfiguredTaskAwaitable_1_ConfiguredTaskAwaiter$views<TResult>;
|
|
323
361
|
|
|
324
362
|
|
|
325
|
-
export interface ConfiguredTaskAwaitable_ConfiguredTaskAwaiter$instance extends ICriticalNotifyCompletion {
|
|
363
|
+
export interface ConfiguredTaskAwaitable_ConfiguredTaskAwaiter$instance extends ICriticalNotifyCompletion, ICriticalNotifyCompletion$instance {
|
|
364
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredTaskAwaitable_ConfiguredTaskAwaiter: never;
|
|
365
|
+
|
|
366
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_IConfiguredTaskAwaiter: never;
|
|
367
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
368
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
369
|
+
|
|
326
370
|
readonly IsCompleted: boolean;
|
|
327
371
|
GetResult(): void;
|
|
328
372
|
OnCompleted(continuation: Action): void;
|
|
@@ -339,12 +383,12 @@ export interface __ConfiguredTaskAwaitable_ConfiguredTaskAwaiter$views {
|
|
|
339
383
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
340
384
|
}
|
|
341
385
|
|
|
342
|
-
export interface ConfiguredTaskAwaitable_ConfiguredTaskAwaiter$instance extends ICriticalNotifyCompletion$instance {}
|
|
343
|
-
|
|
344
386
|
export type ConfiguredTaskAwaitable_ConfiguredTaskAwaiter = ConfiguredTaskAwaitable_ConfiguredTaskAwaiter$instance & __ConfiguredTaskAwaitable_ConfiguredTaskAwaiter$views;
|
|
345
387
|
|
|
346
388
|
|
|
347
389
|
export interface ConfiguredValueTaskAwaitable$instance {
|
|
390
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredValueTaskAwaitable: never;
|
|
391
|
+
|
|
348
392
|
GetAwaiter(): ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter;
|
|
349
393
|
}
|
|
350
394
|
|
|
@@ -357,6 +401,8 @@ export const ConfiguredValueTaskAwaitable: {
|
|
|
357
401
|
export type ConfiguredValueTaskAwaitable = ConfiguredValueTaskAwaitable$instance;
|
|
358
402
|
|
|
359
403
|
export interface ConfiguredValueTaskAwaitable_1$instance<TResult> {
|
|
404
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredValueTaskAwaitable_1: never;
|
|
405
|
+
|
|
360
406
|
GetAwaiter(): ConfiguredValueTaskAwaitable_1_ConfiguredValueTaskAwaiter<TResult>;
|
|
361
407
|
}
|
|
362
408
|
|
|
@@ -368,7 +414,12 @@ export const ConfiguredValueTaskAwaitable_1: {
|
|
|
368
414
|
|
|
369
415
|
export type ConfiguredValueTaskAwaitable_1<TResult> = ConfiguredValueTaskAwaitable_1$instance<TResult>;
|
|
370
416
|
|
|
371
|
-
export interface ConfiguredValueTaskAwaitable_1_ConfiguredValueTaskAwaiter$instance<TResult> extends ICriticalNotifyCompletion {
|
|
417
|
+
export interface ConfiguredValueTaskAwaitable_1_ConfiguredValueTaskAwaiter$instance<TResult> extends ICriticalNotifyCompletion, ICriticalNotifyCompletion$instance {
|
|
418
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredValueTaskAwaitable_1_ConfiguredValueTaskAwaiter: never;
|
|
419
|
+
|
|
420
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
421
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
422
|
+
|
|
372
423
|
readonly IsCompleted: boolean;
|
|
373
424
|
GetResult(): TResult;
|
|
374
425
|
OnCompleted(continuation: Action): void;
|
|
@@ -385,12 +436,15 @@ export interface __ConfiguredValueTaskAwaitable_1_ConfiguredValueTaskAwaiter$vie
|
|
|
385
436
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
386
437
|
}
|
|
387
438
|
|
|
388
|
-
export interface ConfiguredValueTaskAwaitable_1_ConfiguredValueTaskAwaiter$instance<TResult> extends ICriticalNotifyCompletion$instance {}
|
|
389
|
-
|
|
390
439
|
export type ConfiguredValueTaskAwaitable_1_ConfiguredValueTaskAwaiter<TResult> = ConfiguredValueTaskAwaitable_1_ConfiguredValueTaskAwaiter$instance<TResult> & __ConfiguredValueTaskAwaitable_1_ConfiguredValueTaskAwaiter$views<TResult>;
|
|
391
440
|
|
|
392
441
|
|
|
393
|
-
export interface ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter$instance extends ICriticalNotifyCompletion {
|
|
442
|
+
export interface ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter$instance extends ICriticalNotifyCompletion, ICriticalNotifyCompletion$instance {
|
|
443
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter: never;
|
|
444
|
+
|
|
445
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
446
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
447
|
+
|
|
394
448
|
readonly IsCompleted: boolean;
|
|
395
449
|
GetResult(): void;
|
|
396
450
|
OnCompleted(continuation: Action): void;
|
|
@@ -407,12 +461,12 @@ export interface __ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter$views
|
|
|
407
461
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
408
462
|
}
|
|
409
463
|
|
|
410
|
-
export interface ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter$instance extends ICriticalNotifyCompletion$instance {}
|
|
411
|
-
|
|
412
464
|
export type ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter = ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter$instance & __ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter$views;
|
|
413
465
|
|
|
414
466
|
|
|
415
467
|
export interface DefaultInterpolatedStringHandler$instance {
|
|
468
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DefaultInterpolatedStringHandler: never;
|
|
469
|
+
|
|
416
470
|
readonly Text: ReadOnlySpan_1<System_Internal.Char>;
|
|
417
471
|
AppendFormatted<T>(value: T): void;
|
|
418
472
|
AppendFormatted<T>(value: T, format: string): void;
|
|
@@ -440,6 +494,8 @@ export const DefaultInterpolatedStringHandler: {
|
|
|
440
494
|
export type DefaultInterpolatedStringHandler = DefaultInterpolatedStringHandler$instance;
|
|
441
495
|
|
|
442
496
|
export interface InlineArray10_1$instance<T> {
|
|
497
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray10_1: never;
|
|
498
|
+
|
|
443
499
|
}
|
|
444
500
|
|
|
445
501
|
|
|
@@ -451,6 +507,8 @@ export const InlineArray10_1: {
|
|
|
451
507
|
export type InlineArray10_1<T> = InlineArray10_1$instance<T>;
|
|
452
508
|
|
|
453
509
|
export interface InlineArray11_1$instance<T> {
|
|
510
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray11_1: never;
|
|
511
|
+
|
|
454
512
|
}
|
|
455
513
|
|
|
456
514
|
|
|
@@ -462,6 +520,8 @@ export const InlineArray11_1: {
|
|
|
462
520
|
export type InlineArray11_1<T> = InlineArray11_1$instance<T>;
|
|
463
521
|
|
|
464
522
|
export interface InlineArray12_1$instance<T> {
|
|
523
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray12_1: never;
|
|
524
|
+
|
|
465
525
|
}
|
|
466
526
|
|
|
467
527
|
|
|
@@ -473,6 +533,8 @@ export const InlineArray12_1: {
|
|
|
473
533
|
export type InlineArray12_1<T> = InlineArray12_1$instance<T>;
|
|
474
534
|
|
|
475
535
|
export interface InlineArray13_1$instance<T> {
|
|
536
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray13_1: never;
|
|
537
|
+
|
|
476
538
|
}
|
|
477
539
|
|
|
478
540
|
|
|
@@ -484,6 +546,8 @@ export const InlineArray13_1: {
|
|
|
484
546
|
export type InlineArray13_1<T> = InlineArray13_1$instance<T>;
|
|
485
547
|
|
|
486
548
|
export interface InlineArray14_1$instance<T> {
|
|
549
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray14_1: never;
|
|
550
|
+
|
|
487
551
|
}
|
|
488
552
|
|
|
489
553
|
|
|
@@ -495,6 +559,8 @@ export const InlineArray14_1: {
|
|
|
495
559
|
export type InlineArray14_1<T> = InlineArray14_1$instance<T>;
|
|
496
560
|
|
|
497
561
|
export interface InlineArray15_1$instance<T> {
|
|
562
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray15_1: never;
|
|
563
|
+
|
|
498
564
|
}
|
|
499
565
|
|
|
500
566
|
|
|
@@ -506,6 +572,8 @@ export const InlineArray15_1: {
|
|
|
506
572
|
export type InlineArray15_1<T> = InlineArray15_1$instance<T>;
|
|
507
573
|
|
|
508
574
|
export interface InlineArray16_1$instance<T> {
|
|
575
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray16_1: never;
|
|
576
|
+
|
|
509
577
|
}
|
|
510
578
|
|
|
511
579
|
|
|
@@ -517,6 +585,8 @@ export const InlineArray16_1: {
|
|
|
517
585
|
export type InlineArray16_1<T> = InlineArray16_1$instance<T>;
|
|
518
586
|
|
|
519
587
|
export interface InlineArray2_1$instance<T> {
|
|
588
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray2_1: never;
|
|
589
|
+
|
|
520
590
|
}
|
|
521
591
|
|
|
522
592
|
|
|
@@ -528,6 +598,8 @@ export const InlineArray2_1: {
|
|
|
528
598
|
export type InlineArray2_1<T> = InlineArray2_1$instance<T>;
|
|
529
599
|
|
|
530
600
|
export interface InlineArray3_1$instance<T> {
|
|
601
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray3_1: never;
|
|
602
|
+
|
|
531
603
|
}
|
|
532
604
|
|
|
533
605
|
|
|
@@ -539,6 +611,8 @@ export const InlineArray3_1: {
|
|
|
539
611
|
export type InlineArray3_1<T> = InlineArray3_1$instance<T>;
|
|
540
612
|
|
|
541
613
|
export interface InlineArray4_1$instance<T> {
|
|
614
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray4_1: never;
|
|
615
|
+
|
|
542
616
|
}
|
|
543
617
|
|
|
544
618
|
|
|
@@ -550,6 +624,8 @@ export const InlineArray4_1: {
|
|
|
550
624
|
export type InlineArray4_1<T> = InlineArray4_1$instance<T>;
|
|
551
625
|
|
|
552
626
|
export interface InlineArray5_1$instance<T> {
|
|
627
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray5_1: never;
|
|
628
|
+
|
|
553
629
|
}
|
|
554
630
|
|
|
555
631
|
|
|
@@ -561,6 +637,8 @@ export const InlineArray5_1: {
|
|
|
561
637
|
export type InlineArray5_1<T> = InlineArray5_1$instance<T>;
|
|
562
638
|
|
|
563
639
|
export interface InlineArray6_1$instance<T> {
|
|
640
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray6_1: never;
|
|
641
|
+
|
|
564
642
|
}
|
|
565
643
|
|
|
566
644
|
|
|
@@ -572,6 +650,8 @@ export const InlineArray6_1: {
|
|
|
572
650
|
export type InlineArray6_1<T> = InlineArray6_1$instance<T>;
|
|
573
651
|
|
|
574
652
|
export interface InlineArray7_1$instance<T> {
|
|
653
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray7_1: never;
|
|
654
|
+
|
|
575
655
|
}
|
|
576
656
|
|
|
577
657
|
|
|
@@ -583,6 +663,8 @@ export const InlineArray7_1: {
|
|
|
583
663
|
export type InlineArray7_1<T> = InlineArray7_1$instance<T>;
|
|
584
664
|
|
|
585
665
|
export interface InlineArray8_1$instance<T> {
|
|
666
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray8_1: never;
|
|
667
|
+
|
|
586
668
|
}
|
|
587
669
|
|
|
588
670
|
|
|
@@ -594,6 +676,8 @@ export const InlineArray8_1: {
|
|
|
594
676
|
export type InlineArray8_1<T> = InlineArray8_1$instance<T>;
|
|
595
677
|
|
|
596
678
|
export interface InlineArray9_1$instance<T> {
|
|
679
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray9_1: never;
|
|
680
|
+
|
|
597
681
|
}
|
|
598
682
|
|
|
599
683
|
|
|
@@ -605,6 +689,8 @@ export const InlineArray9_1: {
|
|
|
605
689
|
export type InlineArray9_1<T> = InlineArray9_1$instance<T>;
|
|
606
690
|
|
|
607
691
|
export interface PoolingAsyncValueTaskMethodBuilder$instance {
|
|
692
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_PoolingAsyncValueTaskMethodBuilder: never;
|
|
693
|
+
|
|
608
694
|
readonly Task: ValueTask;
|
|
609
695
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
610
696
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
@@ -624,6 +710,8 @@ export const PoolingAsyncValueTaskMethodBuilder: {
|
|
|
624
710
|
export type PoolingAsyncValueTaskMethodBuilder = PoolingAsyncValueTaskMethodBuilder$instance;
|
|
625
711
|
|
|
626
712
|
export interface PoolingAsyncValueTaskMethodBuilder_1$instance<TResult> {
|
|
713
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_PoolingAsyncValueTaskMethodBuilder_1: never;
|
|
714
|
+
|
|
627
715
|
readonly Task: ValueTask_1<TResult>;
|
|
628
716
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
629
717
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
@@ -642,7 +730,12 @@ export const PoolingAsyncValueTaskMethodBuilder_1: {
|
|
|
642
730
|
|
|
643
731
|
export type PoolingAsyncValueTaskMethodBuilder_1<TResult> = PoolingAsyncValueTaskMethodBuilder_1$instance<TResult>;
|
|
644
732
|
|
|
645
|
-
export interface TaskAwaiter$instance extends ICriticalNotifyCompletion {
|
|
733
|
+
export interface TaskAwaiter$instance extends ICriticalNotifyCompletion, ICriticalNotifyCompletion$instance {
|
|
734
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_TaskAwaiter: never;
|
|
735
|
+
|
|
736
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
737
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
738
|
+
|
|
646
739
|
readonly IsCompleted: boolean;
|
|
647
740
|
GetResult(): void;
|
|
648
741
|
OnCompleted(continuation: Action): void;
|
|
@@ -659,12 +752,15 @@ export interface __TaskAwaiter$views {
|
|
|
659
752
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
660
753
|
}
|
|
661
754
|
|
|
662
|
-
export interface TaskAwaiter$instance extends ICriticalNotifyCompletion$instance {}
|
|
663
|
-
|
|
664
755
|
export type TaskAwaiter = TaskAwaiter$instance & __TaskAwaiter$views;
|
|
665
756
|
|
|
666
757
|
|
|
667
|
-
export interface TaskAwaiter_1$instance<TResult> extends ICriticalNotifyCompletion {
|
|
758
|
+
export interface TaskAwaiter_1$instance<TResult> extends ICriticalNotifyCompletion, ICriticalNotifyCompletion$instance {
|
|
759
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_TaskAwaiter_1: never;
|
|
760
|
+
|
|
761
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
762
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
763
|
+
|
|
668
764
|
readonly IsCompleted: boolean;
|
|
669
765
|
GetResult(): TResult;
|
|
670
766
|
OnCompleted(continuation: Action): void;
|
|
@@ -681,12 +777,15 @@ export interface __TaskAwaiter_1$views<TResult> {
|
|
|
681
777
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
682
778
|
}
|
|
683
779
|
|
|
684
|
-
export interface TaskAwaiter_1$instance<TResult> extends ICriticalNotifyCompletion$instance {}
|
|
685
|
-
|
|
686
780
|
export type TaskAwaiter_1<TResult> = TaskAwaiter_1$instance<TResult> & __TaskAwaiter_1$views<TResult>;
|
|
687
781
|
|
|
688
782
|
|
|
689
|
-
export interface ValueTaskAwaiter$instance extends ICriticalNotifyCompletion {
|
|
783
|
+
export interface ValueTaskAwaiter$instance extends ICriticalNotifyCompletion, ICriticalNotifyCompletion$instance {
|
|
784
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ValueTaskAwaiter: never;
|
|
785
|
+
|
|
786
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
787
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
788
|
+
|
|
690
789
|
readonly IsCompleted: boolean;
|
|
691
790
|
GetResult(): void;
|
|
692
791
|
OnCompleted(continuation: Action): void;
|
|
@@ -703,12 +802,15 @@ export interface __ValueTaskAwaiter$views {
|
|
|
703
802
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
704
803
|
}
|
|
705
804
|
|
|
706
|
-
export interface ValueTaskAwaiter$instance extends ICriticalNotifyCompletion$instance {}
|
|
707
|
-
|
|
708
805
|
export type ValueTaskAwaiter = ValueTaskAwaiter$instance & __ValueTaskAwaiter$views;
|
|
709
806
|
|
|
710
807
|
|
|
711
|
-
export interface ValueTaskAwaiter_1$instance<TResult> extends ICriticalNotifyCompletion {
|
|
808
|
+
export interface ValueTaskAwaiter_1$instance<TResult> extends ICriticalNotifyCompletion, ICriticalNotifyCompletion$instance {
|
|
809
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ValueTaskAwaiter_1: never;
|
|
810
|
+
|
|
811
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
812
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
813
|
+
|
|
712
814
|
readonly IsCompleted: boolean;
|
|
713
815
|
GetResult(): TResult;
|
|
714
816
|
OnCompleted(continuation: Action): void;
|
|
@@ -725,12 +827,12 @@ export interface __ValueTaskAwaiter_1$views<TResult> {
|
|
|
725
827
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
726
828
|
}
|
|
727
829
|
|
|
728
|
-
export interface ValueTaskAwaiter_1$instance<TResult> extends ICriticalNotifyCompletion$instance {}
|
|
729
|
-
|
|
730
830
|
export type ValueTaskAwaiter_1<TResult> = ValueTaskAwaiter_1$instance<TResult> & __ValueTaskAwaiter_1$views<TResult>;
|
|
731
831
|
|
|
732
832
|
|
|
733
833
|
export interface YieldAwaitable$instance {
|
|
834
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_YieldAwaitable: never;
|
|
835
|
+
|
|
734
836
|
GetAwaiter(): YieldAwaitable_YieldAwaiter;
|
|
735
837
|
}
|
|
736
838
|
|
|
@@ -742,7 +844,12 @@ export const YieldAwaitable: {
|
|
|
742
844
|
|
|
743
845
|
export type YieldAwaitable = YieldAwaitable$instance;
|
|
744
846
|
|
|
745
|
-
export interface YieldAwaitable_YieldAwaiter$instance extends ICriticalNotifyCompletion {
|
|
847
|
+
export interface YieldAwaitable_YieldAwaiter$instance extends ICriticalNotifyCompletion, ICriticalNotifyCompletion$instance {
|
|
848
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_YieldAwaitable_YieldAwaiter: never;
|
|
849
|
+
|
|
850
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
851
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
852
|
+
|
|
746
853
|
readonly IsCompleted: boolean;
|
|
747
854
|
GetResult(): void;
|
|
748
855
|
OnCompleted(continuation: Action): void;
|
|
@@ -759,12 +866,12 @@ export interface __YieldAwaitable_YieldAwaiter$views {
|
|
|
759
866
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
760
867
|
}
|
|
761
868
|
|
|
762
|
-
export interface YieldAwaitable_YieldAwaiter$instance extends ICriticalNotifyCompletion$instance {}
|
|
763
|
-
|
|
764
869
|
export type YieldAwaitable_YieldAwaiter = YieldAwaitable_YieldAwaiter$instance & __YieldAwaitable_YieldAwaiter$views;
|
|
765
870
|
|
|
766
871
|
|
|
767
872
|
export interface AccessedThroughPropertyAttribute$instance extends Attribute {
|
|
873
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AccessedThroughPropertyAttribute: never;
|
|
874
|
+
|
|
768
875
|
readonly PropertyName: string;
|
|
769
876
|
}
|
|
770
877
|
|
|
@@ -777,6 +884,8 @@ export const AccessedThroughPropertyAttribute: {
|
|
|
777
884
|
export type AccessedThroughPropertyAttribute = AccessedThroughPropertyAttribute$instance;
|
|
778
885
|
|
|
779
886
|
export interface AsyncIteratorStateMachineAttribute$instance extends StateMachineAttribute {
|
|
887
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncIteratorStateMachineAttribute: never;
|
|
888
|
+
|
|
780
889
|
}
|
|
781
890
|
|
|
782
891
|
|
|
@@ -788,6 +897,8 @@ export const AsyncIteratorStateMachineAttribute: {
|
|
|
788
897
|
export type AsyncIteratorStateMachineAttribute = AsyncIteratorStateMachineAttribute$instance;
|
|
789
898
|
|
|
790
899
|
export interface AsyncMethodBuilderAttribute$instance extends Attribute {
|
|
900
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncMethodBuilderAttribute: never;
|
|
901
|
+
|
|
791
902
|
readonly BuilderType: Type;
|
|
792
903
|
}
|
|
793
904
|
|
|
@@ -800,6 +911,8 @@ export const AsyncMethodBuilderAttribute: {
|
|
|
800
911
|
export type AsyncMethodBuilderAttribute = AsyncMethodBuilderAttribute$instance;
|
|
801
912
|
|
|
802
913
|
export interface AsyncStateMachineAttribute$instance extends StateMachineAttribute {
|
|
914
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncStateMachineAttribute: never;
|
|
915
|
+
|
|
803
916
|
}
|
|
804
917
|
|
|
805
918
|
|
|
@@ -811,6 +924,8 @@ export const AsyncStateMachineAttribute: {
|
|
|
811
924
|
export type AsyncStateMachineAttribute = AsyncStateMachineAttribute$instance;
|
|
812
925
|
|
|
813
926
|
export interface CallConvCdecl$instance {
|
|
927
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallConvCdecl: never;
|
|
928
|
+
|
|
814
929
|
}
|
|
815
930
|
|
|
816
931
|
|
|
@@ -822,6 +937,8 @@ export const CallConvCdecl: {
|
|
|
822
937
|
export type CallConvCdecl = CallConvCdecl$instance;
|
|
823
938
|
|
|
824
939
|
export interface CallConvFastcall$instance {
|
|
940
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallConvFastcall: never;
|
|
941
|
+
|
|
825
942
|
}
|
|
826
943
|
|
|
827
944
|
|
|
@@ -833,6 +950,8 @@ export const CallConvFastcall: {
|
|
|
833
950
|
export type CallConvFastcall = CallConvFastcall$instance;
|
|
834
951
|
|
|
835
952
|
export interface CallConvMemberFunction$instance {
|
|
953
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallConvMemberFunction: never;
|
|
954
|
+
|
|
836
955
|
}
|
|
837
956
|
|
|
838
957
|
|
|
@@ -844,6 +963,8 @@ export const CallConvMemberFunction: {
|
|
|
844
963
|
export type CallConvMemberFunction = CallConvMemberFunction$instance;
|
|
845
964
|
|
|
846
965
|
export interface CallConvStdcall$instance {
|
|
966
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallConvStdcall: never;
|
|
967
|
+
|
|
847
968
|
}
|
|
848
969
|
|
|
849
970
|
|
|
@@ -855,6 +976,8 @@ export const CallConvStdcall: {
|
|
|
855
976
|
export type CallConvStdcall = CallConvStdcall$instance;
|
|
856
977
|
|
|
857
978
|
export interface CallConvSuppressGCTransition$instance {
|
|
979
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallConvSuppressGCTransition: never;
|
|
980
|
+
|
|
858
981
|
}
|
|
859
982
|
|
|
860
983
|
|
|
@@ -866,6 +989,8 @@ export const CallConvSuppressGCTransition: {
|
|
|
866
989
|
export type CallConvSuppressGCTransition = CallConvSuppressGCTransition$instance;
|
|
867
990
|
|
|
868
991
|
export interface CallConvSwift$instance {
|
|
992
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallConvSwift: never;
|
|
993
|
+
|
|
869
994
|
}
|
|
870
995
|
|
|
871
996
|
|
|
@@ -877,6 +1002,8 @@ export const CallConvSwift: {
|
|
|
877
1002
|
export type CallConvSwift = CallConvSwift$instance;
|
|
878
1003
|
|
|
879
1004
|
export interface CallConvThiscall$instance {
|
|
1005
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallConvThiscall: never;
|
|
1006
|
+
|
|
880
1007
|
}
|
|
881
1008
|
|
|
882
1009
|
|
|
@@ -888,6 +1015,8 @@ export const CallConvThiscall: {
|
|
|
888
1015
|
export type CallConvThiscall = CallConvThiscall$instance;
|
|
889
1016
|
|
|
890
1017
|
export interface CallerArgumentExpressionAttribute$instance extends Attribute {
|
|
1018
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallerArgumentExpressionAttribute: never;
|
|
1019
|
+
|
|
891
1020
|
readonly ParameterName: string;
|
|
892
1021
|
}
|
|
893
1022
|
|
|
@@ -900,6 +1029,8 @@ export const CallerArgumentExpressionAttribute: {
|
|
|
900
1029
|
export type CallerArgumentExpressionAttribute = CallerArgumentExpressionAttribute$instance;
|
|
901
1030
|
|
|
902
1031
|
export interface CallerFilePathAttribute$instance extends Attribute {
|
|
1032
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallerFilePathAttribute: never;
|
|
1033
|
+
|
|
903
1034
|
}
|
|
904
1035
|
|
|
905
1036
|
|
|
@@ -911,6 +1042,8 @@ export const CallerFilePathAttribute: {
|
|
|
911
1042
|
export type CallerFilePathAttribute = CallerFilePathAttribute$instance;
|
|
912
1043
|
|
|
913
1044
|
export interface CallerLineNumberAttribute$instance extends Attribute {
|
|
1045
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallerLineNumberAttribute: never;
|
|
1046
|
+
|
|
914
1047
|
}
|
|
915
1048
|
|
|
916
1049
|
|
|
@@ -922,6 +1055,8 @@ export const CallerLineNumberAttribute: {
|
|
|
922
1055
|
export type CallerLineNumberAttribute = CallerLineNumberAttribute$instance;
|
|
923
1056
|
|
|
924
1057
|
export interface CallerMemberNameAttribute$instance extends Attribute {
|
|
1058
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallerMemberNameAttribute: never;
|
|
1059
|
+
|
|
925
1060
|
}
|
|
926
1061
|
|
|
927
1062
|
|
|
@@ -933,6 +1068,8 @@ export const CallerMemberNameAttribute: {
|
|
|
933
1068
|
export type CallerMemberNameAttribute = CallerMemberNameAttribute$instance;
|
|
934
1069
|
|
|
935
1070
|
export interface CallSite$instance {
|
|
1071
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallSite: never;
|
|
1072
|
+
|
|
936
1073
|
readonly Binder: CallSiteBinder | undefined;
|
|
937
1074
|
}
|
|
938
1075
|
|
|
@@ -945,6 +1082,8 @@ export const CallSite: {
|
|
|
945
1082
|
export type CallSite = CallSite$instance;
|
|
946
1083
|
|
|
947
1084
|
export interface CallSite_1$instance<T> extends CallSite {
|
|
1085
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallSite_1: never;
|
|
1086
|
+
|
|
948
1087
|
Target: T;
|
|
949
1088
|
readonly Update: T;
|
|
950
1089
|
}
|
|
@@ -957,6 +1096,8 @@ export const CallSite_1: {
|
|
|
957
1096
|
export type CallSite_1<T> = CallSite_1$instance<T>;
|
|
958
1097
|
|
|
959
1098
|
export interface CallSiteBinder$instance {
|
|
1099
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallSiteBinder: never;
|
|
1100
|
+
|
|
960
1101
|
Bind(args: unknown[], parameters: ReadOnlyCollection_1<ParameterExpression>, returnLabel: LabelTarget): Expression;
|
|
961
1102
|
BindDelegate<T>(site: CallSite_1<T>, args: unknown[]): T | undefined;
|
|
962
1103
|
}
|
|
@@ -970,6 +1111,8 @@ export const CallSiteBinder: (abstract new() => CallSiteBinder) & {
|
|
|
970
1111
|
export type CallSiteBinder = CallSiteBinder$instance;
|
|
971
1112
|
|
|
972
1113
|
export interface Closure$instance {
|
|
1114
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_Closure: never;
|
|
1115
|
+
|
|
973
1116
|
readonly Constants: unknown[];
|
|
974
1117
|
readonly Locals: unknown[] | undefined;
|
|
975
1118
|
}
|
|
@@ -983,6 +1126,8 @@ export const Closure: {
|
|
|
983
1126
|
export type Closure = Closure$instance;
|
|
984
1127
|
|
|
985
1128
|
export interface CollectionBuilderAttribute$instance extends Attribute {
|
|
1129
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CollectionBuilderAttribute: never;
|
|
1130
|
+
|
|
986
1131
|
readonly BuilderType: Type;
|
|
987
1132
|
readonly MethodName: string;
|
|
988
1133
|
}
|
|
@@ -996,6 +1141,8 @@ export const CollectionBuilderAttribute: {
|
|
|
996
1141
|
export type CollectionBuilderAttribute = CollectionBuilderAttribute$instance;
|
|
997
1142
|
|
|
998
1143
|
export interface CompilationRelaxationsAttribute$instance extends Attribute {
|
|
1144
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CompilationRelaxationsAttribute: never;
|
|
1145
|
+
|
|
999
1146
|
readonly CompilationRelaxations: int;
|
|
1000
1147
|
}
|
|
1001
1148
|
|
|
@@ -1009,6 +1156,8 @@ export const CompilationRelaxationsAttribute: {
|
|
|
1009
1156
|
export type CompilationRelaxationsAttribute = CompilationRelaxationsAttribute$instance;
|
|
1010
1157
|
|
|
1011
1158
|
export interface CompilerFeatureRequiredAttribute$instance extends Attribute {
|
|
1159
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CompilerFeatureRequiredAttribute: never;
|
|
1160
|
+
|
|
1012
1161
|
readonly FeatureName: string;
|
|
1013
1162
|
IsOptional: boolean;
|
|
1014
1163
|
}
|
|
@@ -1024,6 +1173,8 @@ export const CompilerFeatureRequiredAttribute: {
|
|
|
1024
1173
|
export type CompilerFeatureRequiredAttribute = CompilerFeatureRequiredAttribute$instance;
|
|
1025
1174
|
|
|
1026
1175
|
export interface CompilerGeneratedAttribute$instance extends Attribute {
|
|
1176
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CompilerGeneratedAttribute: never;
|
|
1177
|
+
|
|
1027
1178
|
}
|
|
1028
1179
|
|
|
1029
1180
|
|
|
@@ -1035,6 +1186,8 @@ export const CompilerGeneratedAttribute: {
|
|
|
1035
1186
|
export type CompilerGeneratedAttribute = CompilerGeneratedAttribute$instance;
|
|
1036
1187
|
|
|
1037
1188
|
export interface CompilerGlobalScopeAttribute$instance extends Attribute {
|
|
1189
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CompilerGlobalScopeAttribute: never;
|
|
1190
|
+
|
|
1038
1191
|
}
|
|
1039
1192
|
|
|
1040
1193
|
|
|
@@ -1046,6 +1199,8 @@ export const CompilerGlobalScopeAttribute: {
|
|
|
1046
1199
|
export type CompilerGlobalScopeAttribute = CompilerGlobalScopeAttribute$instance;
|
|
1047
1200
|
|
|
1048
1201
|
export interface CompilerLoweringPreserveAttribute$instance extends Attribute {
|
|
1202
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CompilerLoweringPreserveAttribute: never;
|
|
1203
|
+
|
|
1049
1204
|
}
|
|
1050
1205
|
|
|
1051
1206
|
|
|
@@ -1056,7 +1211,12 @@ export const CompilerLoweringPreserveAttribute: {
|
|
|
1056
1211
|
|
|
1057
1212
|
export type CompilerLoweringPreserveAttribute = CompilerLoweringPreserveAttribute$instance;
|
|
1058
1213
|
|
|
1059
|
-
export interface ConditionalWeakTable_2$instance<TKey, TValue> {
|
|
1214
|
+
export interface ConditionalWeakTable_2$instance<TKey, TValue> extends System_Collections_Generic_Internal.IEnumerable_1$instance<KeyValuePair_2<TKey, TValue>> {
|
|
1215
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConditionalWeakTable_2: never;
|
|
1216
|
+
|
|
1217
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1218
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1219
|
+
|
|
1060
1220
|
Add(key: TKey, value: TValue): void;
|
|
1061
1221
|
AddOrUpdate(key: TKey, value: TValue): void;
|
|
1062
1222
|
Clear(): void;
|
|
@@ -1082,12 +1242,12 @@ export interface __ConditionalWeakTable_2$views<TKey, TValue> {
|
|
|
1082
1242
|
As_IEnumerable(): System_Collections_Internal.IEnumerable$instance;
|
|
1083
1243
|
}
|
|
1084
1244
|
|
|
1085
|
-
export interface ConditionalWeakTable_2$instance<TKey, TValue> extends System_Collections_Generic_Internal.IEnumerable_1$instance<KeyValuePair_2<TKey, TValue>> {}
|
|
1086
|
-
|
|
1087
1245
|
export type ConditionalWeakTable_2<TKey, TValue> = ConditionalWeakTable_2$instance<TKey, TValue> & __ConditionalWeakTable_2$views<TKey, TValue>;
|
|
1088
1246
|
|
|
1089
1247
|
|
|
1090
1248
|
export interface CppInlineNamespaceAttribute$instance extends Attribute {
|
|
1249
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CppInlineNamespaceAttribute: never;
|
|
1250
|
+
|
|
1091
1251
|
}
|
|
1092
1252
|
|
|
1093
1253
|
|
|
@@ -1099,6 +1259,8 @@ export const CppInlineNamespaceAttribute: {
|
|
|
1099
1259
|
export type CppInlineNamespaceAttribute = CppInlineNamespaceAttribute$instance;
|
|
1100
1260
|
|
|
1101
1261
|
export interface CreateNewOnMetadataUpdateAttribute$instance extends Attribute {
|
|
1262
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CreateNewOnMetadataUpdateAttribute: never;
|
|
1263
|
+
|
|
1102
1264
|
}
|
|
1103
1265
|
|
|
1104
1266
|
|
|
@@ -1110,6 +1272,8 @@ export const CreateNewOnMetadataUpdateAttribute: {
|
|
|
1110
1272
|
export type CreateNewOnMetadataUpdateAttribute = CreateNewOnMetadataUpdateAttribute$instance;
|
|
1111
1273
|
|
|
1112
1274
|
export interface CustomConstantAttribute$instance extends Attribute {
|
|
1275
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CustomConstantAttribute: never;
|
|
1276
|
+
|
|
1113
1277
|
readonly Value: unknown | unknown | undefined;
|
|
1114
1278
|
}
|
|
1115
1279
|
|
|
@@ -1121,6 +1285,8 @@ export const CustomConstantAttribute: (abstract new() => CustomConstantAttribute
|
|
|
1121
1285
|
export type CustomConstantAttribute = CustomConstantAttribute$instance;
|
|
1122
1286
|
|
|
1123
1287
|
export interface DateTimeConstantAttribute$instance extends CustomConstantAttribute {
|
|
1288
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DateTimeConstantAttribute: never;
|
|
1289
|
+
|
|
1124
1290
|
readonly Value: unknown | unknown | undefined;
|
|
1125
1291
|
}
|
|
1126
1292
|
|
|
@@ -1133,6 +1299,8 @@ export const DateTimeConstantAttribute: {
|
|
|
1133
1299
|
export type DateTimeConstantAttribute = DateTimeConstantAttribute$instance;
|
|
1134
1300
|
|
|
1135
1301
|
export interface DebugInfoGenerator$instance {
|
|
1302
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DebugInfoGenerator: never;
|
|
1303
|
+
|
|
1136
1304
|
MarkSequencePoint(method: LambdaExpression, ilOffset: int, sequencePoint: DebugInfoExpression): void;
|
|
1137
1305
|
}
|
|
1138
1306
|
|
|
@@ -1145,6 +1313,8 @@ export const DebugInfoGenerator: (abstract new() => DebugInfoGenerator) & {
|
|
|
1145
1313
|
export type DebugInfoGenerator = DebugInfoGenerator$instance;
|
|
1146
1314
|
|
|
1147
1315
|
export interface DecimalConstantAttribute$instance extends Attribute {
|
|
1316
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DecimalConstantAttribute: never;
|
|
1317
|
+
|
|
1148
1318
|
readonly Value: decimal;
|
|
1149
1319
|
}
|
|
1150
1320
|
|
|
@@ -1158,6 +1328,8 @@ export const DecimalConstantAttribute: {
|
|
|
1158
1328
|
export type DecimalConstantAttribute = DecimalConstantAttribute$instance;
|
|
1159
1329
|
|
|
1160
1330
|
export interface DefaultDependencyAttribute$instance extends Attribute {
|
|
1331
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DefaultDependencyAttribute: never;
|
|
1332
|
+
|
|
1161
1333
|
readonly LoadHint: LoadHint;
|
|
1162
1334
|
}
|
|
1163
1335
|
|
|
@@ -1170,6 +1342,8 @@ export const DefaultDependencyAttribute: {
|
|
|
1170
1342
|
export type DefaultDependencyAttribute = DefaultDependencyAttribute$instance;
|
|
1171
1343
|
|
|
1172
1344
|
export interface DependencyAttribute$instance extends Attribute {
|
|
1345
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DependencyAttribute: never;
|
|
1346
|
+
|
|
1173
1347
|
readonly DependentAssembly: string;
|
|
1174
1348
|
readonly LoadHint: LoadHint;
|
|
1175
1349
|
}
|
|
@@ -1183,6 +1357,8 @@ export const DependencyAttribute: {
|
|
|
1183
1357
|
export type DependencyAttribute = DependencyAttribute$instance;
|
|
1184
1358
|
|
|
1185
1359
|
export interface DisablePrivateReflectionAttribute$instance extends Attribute {
|
|
1360
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DisablePrivateReflectionAttribute: never;
|
|
1361
|
+
|
|
1186
1362
|
}
|
|
1187
1363
|
|
|
1188
1364
|
|
|
@@ -1194,6 +1370,8 @@ export const DisablePrivateReflectionAttribute: {
|
|
|
1194
1370
|
export type DisablePrivateReflectionAttribute = DisablePrivateReflectionAttribute$instance;
|
|
1195
1371
|
|
|
1196
1372
|
export interface DisableRuntimeMarshallingAttribute$instance extends Attribute {
|
|
1373
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DisableRuntimeMarshallingAttribute: never;
|
|
1374
|
+
|
|
1197
1375
|
}
|
|
1198
1376
|
|
|
1199
1377
|
|
|
@@ -1205,6 +1383,8 @@ export const DisableRuntimeMarshallingAttribute: {
|
|
|
1205
1383
|
export type DisableRuntimeMarshallingAttribute = DisableRuntimeMarshallingAttribute$instance;
|
|
1206
1384
|
|
|
1207
1385
|
export interface DiscardableAttribute$instance extends Attribute {
|
|
1386
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DiscardableAttribute: never;
|
|
1387
|
+
|
|
1208
1388
|
}
|
|
1209
1389
|
|
|
1210
1390
|
|
|
@@ -1216,6 +1396,8 @@ export const DiscardableAttribute: {
|
|
|
1216
1396
|
export type DiscardableAttribute = DiscardableAttribute$instance;
|
|
1217
1397
|
|
|
1218
1398
|
export interface DynamicAttribute$instance extends Attribute {
|
|
1399
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DynamicAttribute: never;
|
|
1400
|
+
|
|
1219
1401
|
readonly TransformFlags: IList_1<System_Internal.Boolean>;
|
|
1220
1402
|
}
|
|
1221
1403
|
|
|
@@ -1229,6 +1411,8 @@ export const DynamicAttribute: {
|
|
|
1229
1411
|
export type DynamicAttribute = DynamicAttribute$instance;
|
|
1230
1412
|
|
|
1231
1413
|
export interface EnumeratorCancellationAttribute$instance extends Attribute {
|
|
1414
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_EnumeratorCancellationAttribute: never;
|
|
1415
|
+
|
|
1232
1416
|
}
|
|
1233
1417
|
|
|
1234
1418
|
|
|
@@ -1240,6 +1424,8 @@ export const EnumeratorCancellationAttribute: {
|
|
|
1240
1424
|
export type EnumeratorCancellationAttribute = EnumeratorCancellationAttribute$instance;
|
|
1241
1425
|
|
|
1242
1426
|
export interface ExtensionAttribute$instance extends Attribute {
|
|
1427
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ExtensionAttribute: never;
|
|
1428
|
+
|
|
1243
1429
|
}
|
|
1244
1430
|
|
|
1245
1431
|
|
|
@@ -1251,6 +1437,8 @@ export const ExtensionAttribute: {
|
|
|
1251
1437
|
export type ExtensionAttribute = ExtensionAttribute$instance;
|
|
1252
1438
|
|
|
1253
1439
|
export interface ExtensionMarkerAttribute$instance extends Attribute {
|
|
1440
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ExtensionMarkerAttribute: never;
|
|
1441
|
+
|
|
1254
1442
|
readonly Name: string;
|
|
1255
1443
|
}
|
|
1256
1444
|
|
|
@@ -1263,6 +1451,8 @@ export const ExtensionMarkerAttribute: {
|
|
|
1263
1451
|
export type ExtensionMarkerAttribute = ExtensionMarkerAttribute$instance;
|
|
1264
1452
|
|
|
1265
1453
|
export interface FixedAddressValueTypeAttribute$instance extends Attribute {
|
|
1454
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_FixedAddressValueTypeAttribute: never;
|
|
1455
|
+
|
|
1266
1456
|
}
|
|
1267
1457
|
|
|
1268
1458
|
|
|
@@ -1274,6 +1464,8 @@ export const FixedAddressValueTypeAttribute: {
|
|
|
1274
1464
|
export type FixedAddressValueTypeAttribute = FixedAddressValueTypeAttribute$instance;
|
|
1275
1465
|
|
|
1276
1466
|
export interface FixedBufferAttribute$instance extends Attribute {
|
|
1467
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_FixedBufferAttribute: never;
|
|
1468
|
+
|
|
1277
1469
|
readonly ElementType: Type;
|
|
1278
1470
|
readonly Length: int;
|
|
1279
1471
|
}
|
|
@@ -1287,6 +1479,8 @@ export const FixedBufferAttribute: {
|
|
|
1287
1479
|
export type FixedBufferAttribute = FixedBufferAttribute$instance;
|
|
1288
1480
|
|
|
1289
1481
|
export interface HasCopySemanticsAttribute$instance extends Attribute {
|
|
1482
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_HasCopySemanticsAttribute: never;
|
|
1483
|
+
|
|
1290
1484
|
}
|
|
1291
1485
|
|
|
1292
1486
|
|
|
@@ -1298,6 +1492,8 @@ export const HasCopySemanticsAttribute: {
|
|
|
1298
1492
|
export type HasCopySemanticsAttribute = HasCopySemanticsAttribute$instance;
|
|
1299
1493
|
|
|
1300
1494
|
export interface IDispatchConstantAttribute$instance extends CustomConstantAttribute {
|
|
1495
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_IDispatchConstantAttribute: never;
|
|
1496
|
+
|
|
1301
1497
|
readonly Value: unknown | unknown | undefined;
|
|
1302
1498
|
}
|
|
1303
1499
|
|
|
@@ -1310,6 +1506,8 @@ export const IDispatchConstantAttribute: {
|
|
|
1310
1506
|
export type IDispatchConstantAttribute = IDispatchConstantAttribute$instance;
|
|
1311
1507
|
|
|
1312
1508
|
export interface IndexerNameAttribute$instance extends Attribute {
|
|
1509
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_IndexerNameAttribute: never;
|
|
1510
|
+
|
|
1313
1511
|
}
|
|
1314
1512
|
|
|
1315
1513
|
|
|
@@ -1321,6 +1519,8 @@ export const IndexerNameAttribute: {
|
|
|
1321
1519
|
export type IndexerNameAttribute = IndexerNameAttribute$instance;
|
|
1322
1520
|
|
|
1323
1521
|
export interface InlineArrayAttribute$instance extends Attribute {
|
|
1522
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArrayAttribute: never;
|
|
1523
|
+
|
|
1324
1524
|
readonly Length: int;
|
|
1325
1525
|
}
|
|
1326
1526
|
|
|
@@ -1333,6 +1533,8 @@ export const InlineArrayAttribute: {
|
|
|
1333
1533
|
export type InlineArrayAttribute = InlineArrayAttribute$instance;
|
|
1334
1534
|
|
|
1335
1535
|
export interface InternalsVisibleToAttribute$instance extends Attribute {
|
|
1536
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InternalsVisibleToAttribute: never;
|
|
1537
|
+
|
|
1336
1538
|
AllInternalsVisible: boolean;
|
|
1337
1539
|
readonly AssemblyName: string;
|
|
1338
1540
|
}
|
|
@@ -1346,6 +1548,8 @@ export const InternalsVisibleToAttribute: {
|
|
|
1346
1548
|
export type InternalsVisibleToAttribute = InternalsVisibleToAttribute$instance;
|
|
1347
1549
|
|
|
1348
1550
|
export interface InterpolatedStringHandlerArgumentAttribute$instance extends Attribute {
|
|
1551
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InterpolatedStringHandlerArgumentAttribute: never;
|
|
1552
|
+
|
|
1349
1553
|
readonly Arguments: string[];
|
|
1350
1554
|
}
|
|
1351
1555
|
|
|
@@ -1359,6 +1563,8 @@ export const InterpolatedStringHandlerArgumentAttribute: {
|
|
|
1359
1563
|
export type InterpolatedStringHandlerArgumentAttribute = InterpolatedStringHandlerArgumentAttribute$instance;
|
|
1360
1564
|
|
|
1361
1565
|
export interface InterpolatedStringHandlerAttribute$instance extends Attribute {
|
|
1566
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InterpolatedStringHandlerAttribute: never;
|
|
1567
|
+
|
|
1362
1568
|
}
|
|
1363
1569
|
|
|
1364
1570
|
|
|
@@ -1370,6 +1576,8 @@ export const InterpolatedStringHandlerAttribute: {
|
|
|
1370
1576
|
export type InterpolatedStringHandlerAttribute = InterpolatedStringHandlerAttribute$instance;
|
|
1371
1577
|
|
|
1372
1578
|
export interface IsByRefLikeAttribute$instance extends Attribute {
|
|
1579
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_IsByRefLikeAttribute: never;
|
|
1580
|
+
|
|
1373
1581
|
}
|
|
1374
1582
|
|
|
1375
1583
|
|
|
@@ -1381,6 +1589,8 @@ export const IsByRefLikeAttribute: {
|
|
|
1381
1589
|
export type IsByRefLikeAttribute = IsByRefLikeAttribute$instance;
|
|
1382
1590
|
|
|
1383
1591
|
export interface IsReadOnlyAttribute$instance extends Attribute {
|
|
1592
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_IsReadOnlyAttribute: never;
|
|
1593
|
+
|
|
1384
1594
|
}
|
|
1385
1595
|
|
|
1386
1596
|
|
|
@@ -1392,6 +1602,8 @@ export const IsReadOnlyAttribute: {
|
|
|
1392
1602
|
export type IsReadOnlyAttribute = IsReadOnlyAttribute$instance;
|
|
1393
1603
|
|
|
1394
1604
|
export interface IsUnmanagedAttribute$instance extends Attribute {
|
|
1605
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_IsUnmanagedAttribute: never;
|
|
1606
|
+
|
|
1395
1607
|
}
|
|
1396
1608
|
|
|
1397
1609
|
|
|
@@ -1403,6 +1615,8 @@ export const IsUnmanagedAttribute: {
|
|
|
1403
1615
|
export type IsUnmanagedAttribute = IsUnmanagedAttribute$instance;
|
|
1404
1616
|
|
|
1405
1617
|
export interface IteratorStateMachineAttribute$instance extends StateMachineAttribute {
|
|
1618
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_IteratorStateMachineAttribute: never;
|
|
1619
|
+
|
|
1406
1620
|
}
|
|
1407
1621
|
|
|
1408
1622
|
|
|
@@ -1414,6 +1628,8 @@ export const IteratorStateMachineAttribute: {
|
|
|
1414
1628
|
export type IteratorStateMachineAttribute = IteratorStateMachineAttribute$instance;
|
|
1415
1629
|
|
|
1416
1630
|
export interface IUnknownConstantAttribute$instance extends CustomConstantAttribute {
|
|
1631
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_IUnknownConstantAttribute: never;
|
|
1632
|
+
|
|
1417
1633
|
readonly Value: unknown | unknown | undefined;
|
|
1418
1634
|
}
|
|
1419
1635
|
|
|
@@ -1426,6 +1642,8 @@ export const IUnknownConstantAttribute: {
|
|
|
1426
1642
|
export type IUnknownConstantAttribute = IUnknownConstantAttribute$instance;
|
|
1427
1643
|
|
|
1428
1644
|
export interface MetadataUpdateDeletedAttribute$instance extends Attribute {
|
|
1645
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_MetadataUpdateDeletedAttribute: never;
|
|
1646
|
+
|
|
1429
1647
|
}
|
|
1430
1648
|
|
|
1431
1649
|
|
|
@@ -1437,6 +1655,8 @@ export const MetadataUpdateDeletedAttribute: {
|
|
|
1437
1655
|
export type MetadataUpdateDeletedAttribute = MetadataUpdateDeletedAttribute$instance;
|
|
1438
1656
|
|
|
1439
1657
|
export interface MetadataUpdateOriginalTypeAttribute$instance extends Attribute {
|
|
1658
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_MetadataUpdateOriginalTypeAttribute: never;
|
|
1659
|
+
|
|
1440
1660
|
readonly OriginalType: Type;
|
|
1441
1661
|
}
|
|
1442
1662
|
|
|
@@ -1449,6 +1669,8 @@ export const MetadataUpdateOriginalTypeAttribute: {
|
|
|
1449
1669
|
export type MetadataUpdateOriginalTypeAttribute = MetadataUpdateOriginalTypeAttribute$instance;
|
|
1450
1670
|
|
|
1451
1671
|
export interface MethodImplAttribute$instance extends Attribute {
|
|
1672
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_MethodImplAttribute: never;
|
|
1673
|
+
|
|
1452
1674
|
MethodCodeType: MethodCodeType;
|
|
1453
1675
|
readonly Value: MethodImplOptions;
|
|
1454
1676
|
}
|
|
@@ -1464,6 +1686,8 @@ export const MethodImplAttribute: {
|
|
|
1464
1686
|
export type MethodImplAttribute = MethodImplAttribute$instance;
|
|
1465
1687
|
|
|
1466
1688
|
export interface ModuleInitializerAttribute$instance extends Attribute {
|
|
1689
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ModuleInitializerAttribute: never;
|
|
1690
|
+
|
|
1467
1691
|
}
|
|
1468
1692
|
|
|
1469
1693
|
|
|
@@ -1475,6 +1699,8 @@ export const ModuleInitializerAttribute: {
|
|
|
1475
1699
|
export type ModuleInitializerAttribute = ModuleInitializerAttribute$instance;
|
|
1476
1700
|
|
|
1477
1701
|
export interface NativeCppClassAttribute$instance extends Attribute {
|
|
1702
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_NativeCppClassAttribute: never;
|
|
1703
|
+
|
|
1478
1704
|
}
|
|
1479
1705
|
|
|
1480
1706
|
|
|
@@ -1486,6 +1712,8 @@ export const NativeCppClassAttribute: {
|
|
|
1486
1712
|
export type NativeCppClassAttribute = NativeCppClassAttribute$instance;
|
|
1487
1713
|
|
|
1488
1714
|
export interface NullableAttribute$instance extends Attribute {
|
|
1715
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_NullableAttribute: never;
|
|
1716
|
+
|
|
1489
1717
|
readonly NullableFlags: byte[];
|
|
1490
1718
|
}
|
|
1491
1719
|
|
|
@@ -1499,6 +1727,8 @@ export const NullableAttribute: {
|
|
|
1499
1727
|
export type NullableAttribute = NullableAttribute$instance;
|
|
1500
1728
|
|
|
1501
1729
|
export interface NullableContextAttribute$instance extends Attribute {
|
|
1730
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_NullableContextAttribute: never;
|
|
1731
|
+
|
|
1502
1732
|
readonly Flag: byte;
|
|
1503
1733
|
}
|
|
1504
1734
|
|
|
@@ -1511,6 +1741,8 @@ export const NullableContextAttribute: {
|
|
|
1511
1741
|
export type NullableContextAttribute = NullableContextAttribute$instance;
|
|
1512
1742
|
|
|
1513
1743
|
export interface NullablePublicOnlyAttribute$instance extends Attribute {
|
|
1744
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_NullablePublicOnlyAttribute: never;
|
|
1745
|
+
|
|
1514
1746
|
readonly IncludesInternals: boolean;
|
|
1515
1747
|
}
|
|
1516
1748
|
|
|
@@ -1523,6 +1755,8 @@ export const NullablePublicOnlyAttribute: {
|
|
|
1523
1755
|
export type NullablePublicOnlyAttribute = NullablePublicOnlyAttribute$instance;
|
|
1524
1756
|
|
|
1525
1757
|
export interface OverloadResolutionPriorityAttribute$instance extends Attribute {
|
|
1758
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_OverloadResolutionPriorityAttribute: never;
|
|
1759
|
+
|
|
1526
1760
|
readonly Priority: int;
|
|
1527
1761
|
}
|
|
1528
1762
|
|
|
@@ -1535,6 +1769,8 @@ export const OverloadResolutionPriorityAttribute: {
|
|
|
1535
1769
|
export type OverloadResolutionPriorityAttribute = OverloadResolutionPriorityAttribute$instance;
|
|
1536
1770
|
|
|
1537
1771
|
export interface ParamCollectionAttribute$instance extends Attribute {
|
|
1772
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ParamCollectionAttribute: never;
|
|
1773
|
+
|
|
1538
1774
|
}
|
|
1539
1775
|
|
|
1540
1776
|
|
|
@@ -1546,6 +1782,8 @@ export const ParamCollectionAttribute: {
|
|
|
1546
1782
|
export type ParamCollectionAttribute = ParamCollectionAttribute$instance;
|
|
1547
1783
|
|
|
1548
1784
|
export interface PreserveBaseOverridesAttribute$instance extends Attribute {
|
|
1785
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_PreserveBaseOverridesAttribute: never;
|
|
1786
|
+
|
|
1549
1787
|
}
|
|
1550
1788
|
|
|
1551
1789
|
|
|
@@ -1557,6 +1795,15 @@ export const PreserveBaseOverridesAttribute: {
|
|
|
1557
1795
|
export type PreserveBaseOverridesAttribute = PreserveBaseOverridesAttribute$instance;
|
|
1558
1796
|
|
|
1559
1797
|
export interface ReadOnlyCollectionBuilder_1$instance<T> {
|
|
1798
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ReadOnlyCollectionBuilder_1: never;
|
|
1799
|
+
|
|
1800
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1801
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1802
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
1803
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1804
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1805
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
1806
|
+
|
|
1560
1807
|
Capacity: int;
|
|
1561
1808
|
readonly Count: int;
|
|
1562
1809
|
[index: number]: T;
|
|
@@ -1596,6 +1843,8 @@ export type ReadOnlyCollectionBuilder_1<T> = ReadOnlyCollectionBuilder_1$instanc
|
|
|
1596
1843
|
|
|
1597
1844
|
|
|
1598
1845
|
export interface ReferenceAssemblyAttribute$instance extends Attribute {
|
|
1846
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ReferenceAssemblyAttribute: never;
|
|
1847
|
+
|
|
1599
1848
|
readonly Description: string | undefined;
|
|
1600
1849
|
}
|
|
1601
1850
|
|
|
@@ -1609,6 +1858,8 @@ export const ReferenceAssemblyAttribute: {
|
|
|
1609
1858
|
export type ReferenceAssemblyAttribute = ReferenceAssemblyAttribute$instance;
|
|
1610
1859
|
|
|
1611
1860
|
export interface RefSafetyRulesAttribute$instance extends Attribute {
|
|
1861
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_RefSafetyRulesAttribute: never;
|
|
1862
|
+
|
|
1612
1863
|
readonly Version: int;
|
|
1613
1864
|
}
|
|
1614
1865
|
|
|
@@ -1621,6 +1872,8 @@ export const RefSafetyRulesAttribute: {
|
|
|
1621
1872
|
export type RefSafetyRulesAttribute = RefSafetyRulesAttribute$instance;
|
|
1622
1873
|
|
|
1623
1874
|
export interface RequiredAttributeAttribute$instance extends Attribute {
|
|
1875
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_RequiredAttributeAttribute: never;
|
|
1876
|
+
|
|
1624
1877
|
readonly RequiredContract: Type;
|
|
1625
1878
|
}
|
|
1626
1879
|
|
|
@@ -1633,6 +1886,8 @@ export const RequiredAttributeAttribute: {
|
|
|
1633
1886
|
export type RequiredAttributeAttribute = RequiredAttributeAttribute$instance;
|
|
1634
1887
|
|
|
1635
1888
|
export interface RequiredMemberAttribute$instance extends Attribute {
|
|
1889
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_RequiredMemberAttribute: never;
|
|
1890
|
+
|
|
1636
1891
|
}
|
|
1637
1892
|
|
|
1638
1893
|
|
|
@@ -1644,6 +1899,8 @@ export const RequiredMemberAttribute: {
|
|
|
1644
1899
|
export type RequiredMemberAttribute = RequiredMemberAttribute$instance;
|
|
1645
1900
|
|
|
1646
1901
|
export interface RequiresLocationAttribute$instance extends Attribute {
|
|
1902
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_RequiresLocationAttribute: never;
|
|
1903
|
+
|
|
1647
1904
|
}
|
|
1648
1905
|
|
|
1649
1906
|
|
|
@@ -1655,6 +1912,8 @@ export const RequiresLocationAttribute: {
|
|
|
1655
1912
|
export type RequiresLocationAttribute = RequiresLocationAttribute$instance;
|
|
1656
1913
|
|
|
1657
1914
|
export interface RuleCache_1$instance<T> {
|
|
1915
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_RuleCache_1: never;
|
|
1916
|
+
|
|
1658
1917
|
}
|
|
1659
1918
|
|
|
1660
1919
|
|
|
@@ -1665,6 +1924,8 @@ export const RuleCache_1: {
|
|
|
1665
1924
|
export type RuleCache_1<T> = RuleCache_1$instance<T>;
|
|
1666
1925
|
|
|
1667
1926
|
export interface RuntimeCompatibilityAttribute$instance extends Attribute {
|
|
1927
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_RuntimeCompatibilityAttribute: never;
|
|
1928
|
+
|
|
1668
1929
|
WrapNonExceptionThrows: boolean;
|
|
1669
1930
|
}
|
|
1670
1931
|
|
|
@@ -1677,6 +1938,10 @@ export const RuntimeCompatibilityAttribute: {
|
|
|
1677
1938
|
export type RuntimeCompatibilityAttribute = RuntimeCompatibilityAttribute$instance;
|
|
1678
1939
|
|
|
1679
1940
|
export interface RuntimeWrappedException$instance extends Exception {
|
|
1941
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_RuntimeWrappedException: never;
|
|
1942
|
+
|
|
1943
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1944
|
+
|
|
1680
1945
|
readonly WrappedException: unknown;
|
|
1681
1946
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1682
1947
|
}
|
|
@@ -1695,6 +1960,8 @@ export type RuntimeWrappedException = RuntimeWrappedException$instance & __Runti
|
|
|
1695
1960
|
|
|
1696
1961
|
|
|
1697
1962
|
export interface ScopedRefAttribute$instance extends Attribute {
|
|
1963
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ScopedRefAttribute: never;
|
|
1964
|
+
|
|
1698
1965
|
}
|
|
1699
1966
|
|
|
1700
1967
|
|
|
@@ -1706,6 +1973,8 @@ export const ScopedRefAttribute: {
|
|
|
1706
1973
|
export type ScopedRefAttribute = ScopedRefAttribute$instance;
|
|
1707
1974
|
|
|
1708
1975
|
export interface ScopelessEnumAttribute$instance extends Attribute {
|
|
1976
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ScopelessEnumAttribute: never;
|
|
1977
|
+
|
|
1709
1978
|
}
|
|
1710
1979
|
|
|
1711
1980
|
|
|
@@ -1717,6 +1986,8 @@ export const ScopelessEnumAttribute: {
|
|
|
1717
1986
|
export type ScopelessEnumAttribute = ScopelessEnumAttribute$instance;
|
|
1718
1987
|
|
|
1719
1988
|
export interface SkipLocalsInitAttribute$instance extends Attribute {
|
|
1989
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_SkipLocalsInitAttribute: never;
|
|
1990
|
+
|
|
1720
1991
|
}
|
|
1721
1992
|
|
|
1722
1993
|
|
|
@@ -1728,6 +1999,8 @@ export const SkipLocalsInitAttribute: {
|
|
|
1728
1999
|
export type SkipLocalsInitAttribute = SkipLocalsInitAttribute$instance;
|
|
1729
2000
|
|
|
1730
2001
|
export interface SpecialNameAttribute$instance extends Attribute {
|
|
2002
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_SpecialNameAttribute: never;
|
|
2003
|
+
|
|
1731
2004
|
}
|
|
1732
2005
|
|
|
1733
2006
|
|
|
@@ -1739,6 +2012,8 @@ export const SpecialNameAttribute: {
|
|
|
1739
2012
|
export type SpecialNameAttribute = SpecialNameAttribute$instance;
|
|
1740
2013
|
|
|
1741
2014
|
export interface StateMachineAttribute$instance extends Attribute {
|
|
2015
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_StateMachineAttribute: never;
|
|
2016
|
+
|
|
1742
2017
|
readonly StateMachineType: Type;
|
|
1743
2018
|
}
|
|
1744
2019
|
|
|
@@ -1751,6 +2026,8 @@ export const StateMachineAttribute: {
|
|
|
1751
2026
|
export type StateMachineAttribute = StateMachineAttribute$instance;
|
|
1752
2027
|
|
|
1753
2028
|
export interface StringFreezingAttribute$instance extends Attribute {
|
|
2029
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_StringFreezingAttribute: never;
|
|
2030
|
+
|
|
1754
2031
|
}
|
|
1755
2032
|
|
|
1756
2033
|
|
|
@@ -1761,7 +2038,11 @@ export const StringFreezingAttribute: {
|
|
|
1761
2038
|
|
|
1762
2039
|
export type StringFreezingAttribute = StringFreezingAttribute$instance;
|
|
1763
2040
|
|
|
1764
|
-
export interface StrongBox_1$instance<T> {
|
|
2041
|
+
export interface StrongBox_1$instance<T> extends IStrongBox$instance {
|
|
2042
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_StrongBox_1: never;
|
|
2043
|
+
|
|
2044
|
+
readonly __tsonic_iface_System_Runtime_CompilerServices_IStrongBox: never;
|
|
2045
|
+
|
|
1765
2046
|
Value: T;
|
|
1766
2047
|
}
|
|
1767
2048
|
|
|
@@ -1776,12 +2057,12 @@ export interface __StrongBox_1$views<T> {
|
|
|
1776
2057
|
As_IStrongBox(): IStrongBox$instance;
|
|
1777
2058
|
}
|
|
1778
2059
|
|
|
1779
|
-
export interface StrongBox_1$instance<T> extends IStrongBox$instance {}
|
|
1780
|
-
|
|
1781
2060
|
export type StrongBox_1<T> = StrongBox_1$instance<T> & __StrongBox_1$views<T>;
|
|
1782
2061
|
|
|
1783
2062
|
|
|
1784
2063
|
export interface SuppressIldasmAttribute$instance extends Attribute {
|
|
2064
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_SuppressIldasmAttribute: never;
|
|
2065
|
+
|
|
1785
2066
|
}
|
|
1786
2067
|
|
|
1787
2068
|
|
|
@@ -1793,6 +2074,10 @@ export const SuppressIldasmAttribute: {
|
|
|
1793
2074
|
export type SuppressIldasmAttribute = SuppressIldasmAttribute$instance;
|
|
1794
2075
|
|
|
1795
2076
|
export interface SwitchExpressionException$instance extends InvalidOperationException {
|
|
2077
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_SwitchExpressionException: never;
|
|
2078
|
+
|
|
2079
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2080
|
+
|
|
1796
2081
|
readonly Message: string;
|
|
1797
2082
|
readonly UnmatchedValue: unknown | undefined;
|
|
1798
2083
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1816,6 +2101,8 @@ export type SwitchExpressionException = SwitchExpressionException$instance & __S
|
|
|
1816
2101
|
|
|
1817
2102
|
|
|
1818
2103
|
export interface TupleElementNamesAttribute$instance extends Attribute {
|
|
2104
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_TupleElementNamesAttribute: never;
|
|
2105
|
+
|
|
1819
2106
|
readonly TransformNames: IList_1<string | undefined>;
|
|
1820
2107
|
}
|
|
1821
2108
|
|
|
@@ -1828,6 +2115,8 @@ export const TupleElementNamesAttribute: {
|
|
|
1828
2115
|
export type TupleElementNamesAttribute = TupleElementNamesAttribute$instance;
|
|
1829
2116
|
|
|
1830
2117
|
export interface TypeForwardedFromAttribute$instance extends Attribute {
|
|
2118
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_TypeForwardedFromAttribute: never;
|
|
2119
|
+
|
|
1831
2120
|
readonly AssemblyFullName: string;
|
|
1832
2121
|
}
|
|
1833
2122
|
|
|
@@ -1840,6 +2129,8 @@ export const TypeForwardedFromAttribute: {
|
|
|
1840
2129
|
export type TypeForwardedFromAttribute = TypeForwardedFromAttribute$instance;
|
|
1841
2130
|
|
|
1842
2131
|
export interface TypeForwardedToAttribute$instance extends Attribute {
|
|
2132
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_TypeForwardedToAttribute: never;
|
|
2133
|
+
|
|
1843
2134
|
readonly Destination: Type;
|
|
1844
2135
|
}
|
|
1845
2136
|
|
|
@@ -1852,6 +2143,8 @@ export const TypeForwardedToAttribute: {
|
|
|
1852
2143
|
export type TypeForwardedToAttribute = TypeForwardedToAttribute$instance;
|
|
1853
2144
|
|
|
1854
2145
|
export interface UnsafeAccessorAttribute$instance extends Attribute {
|
|
2146
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_UnsafeAccessorAttribute: never;
|
|
2147
|
+
|
|
1855
2148
|
readonly Kind: UnsafeAccessorKind;
|
|
1856
2149
|
get Name(): string | undefined;
|
|
1857
2150
|
set Name(value: string | undefined);
|
|
@@ -1866,6 +2159,8 @@ export const UnsafeAccessorAttribute: {
|
|
|
1866
2159
|
export type UnsafeAccessorAttribute = UnsafeAccessorAttribute$instance;
|
|
1867
2160
|
|
|
1868
2161
|
export interface UnsafeAccessorTypeAttribute$instance extends Attribute {
|
|
2162
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_UnsafeAccessorTypeAttribute: never;
|
|
2163
|
+
|
|
1869
2164
|
readonly TypeName: string;
|
|
1870
2165
|
}
|
|
1871
2166
|
|
|
@@ -1878,6 +2173,8 @@ export const UnsafeAccessorTypeAttribute: {
|
|
|
1878
2173
|
export type UnsafeAccessorTypeAttribute = UnsafeAccessorTypeAttribute$instance;
|
|
1879
2174
|
|
|
1880
2175
|
export interface UnsafeValueTypeAttribute$instance extends Attribute {
|
|
2176
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_UnsafeValueTypeAttribute: never;
|
|
2177
|
+
|
|
1881
2178
|
}
|
|
1882
2179
|
|
|
1883
2180
|
|