@tsonic/dotnet 10.0.5 → 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 +6 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +38 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +58 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +8 -0
- package/Microsoft.Win32/internal/index.d.ts +3 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +34 -0
- package/System/internal/index.d.ts +413 -159
- package/System.Buffers/internal/index.d.ts +24 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +4 -0
- package/System.Collections/internal/index.d.ts +35 -21
- package/System.Collections.Concurrent/internal/index.d.ts +17 -3
- package/System.Collections.Frozen/internal/index.d.ts +12 -0
- package/System.Collections.Generic/internal/index.d.ts +121 -33
- package/System.Collections.Immutable/internal/index.d.ts +44 -0
- package/System.Collections.ObjectModel/internal/index.d.ts +20 -6
- package/System.Collections.Specialized/internal/index.d.ts +30 -6
- package/System.ComponentModel/internal/index.d.ts +269 -21
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +73 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +47 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +22 -0
- package/System.Data/internal/index.d.ts +110 -18
- package/System.Data.Common/internal/index.d.ts +64 -30
- package/System.Data.SqlTypes/internal/index.d.ts +58 -48
- package/System.Diagnostics/internal/index.d.ts +143 -9
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +26 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +31 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +8 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +40 -6
- package/System.Drawing/internal/index.d.ts +24 -0
- package/System.Dynamic/internal/index.d.ts +37 -5
- package/System.Formats.Asn1/internal/index.d.ts +13 -3
- package/System.Formats.Tar/internal/index.d.ts +20 -6
- package/System.Globalization/internal/index.d.ts +64 -18
- package/System.IO/internal/index.d.ts +74 -18
- package/System.IO.Compression/internal/index.d.ts +25 -9
- package/System.IO.Enumeration/internal/index.d.ts +6 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +9 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +6 -0
- package/System.IO.Pipelines/internal/index.d.ts +18 -2
- package/System.IO.Pipes/internal/index.d.ts +16 -0
- package/System.Linq/internal/index.d.ts +17 -3
- package/System.Linq.Expressions/internal/index.d.ts +86 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +109 -19
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +50 -0
- package/System.Net.Http.Headers/internal/index.d.ts +78 -60
- package/System.Net.Http.Json/internal/index.d.ts +2 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +31 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +62 -0
- package/System.Net.Quic/internal/index.d.ts +22 -6
- package/System.Net.Security/internal/index.d.ts +27 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +38 -6
- package/System.Net.WebSockets/internal/index.d.ts +23 -3
- package/System.Numerics/internal/index.d.ts +24 -6
- package/System.Reflection/internal/index.d.ts +134 -30
- package/System.Reflection.Emit/internal/index.d.ts +45 -9
- package/System.Reflection.Metadata/internal/index.d.ts +321 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +76 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +37 -3
- package/System.Resources/internal/index.d.ts +16 -0
- package/System.Runtime/internal/index.d.ts +12 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +275 -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 +174 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +40 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +55 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +57 -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 +12 -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 +7 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +75 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +3 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +4 -0
- package/System.Runtime.Versioning/internal/index.d.ts +26 -0
- package/System.Security/internal/index.d.ts +28 -6
- package/System.Security.AccessControl/internal/index.d.ts +94 -0
- package/System.Security.Authentication/internal/index.d.ts +4 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +9 -3
- package/System.Security.Claims/internal/index.d.ts +8 -6
- package/System.Security.Cryptography/internal/index.d.ts +298 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +69 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +4 -0
- package/System.Security.Principal/internal/index.d.ts +19 -5
- package/System.Text/internal/index.d.ts +68 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +32 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +10 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +54 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +23 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +33 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +108 -24
- package/System.Threading.Channels/internal/index.d.ts +18 -0
- package/System.Threading.Tasks/internal/index.d.ts +34 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +32 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +2 -0
- package/System.Timers/internal/index.d.ts +7 -3
- package/System.Transactions/internal/index.d.ts +37 -15
- package/System.Web/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +106 -18
- package/System.Xml.Linq/internal/index.d.ts +41 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +148 -0
- package/System.Xml.Serialization/internal/index.d.ts +116 -0
- package/System.Xml.XPath/internal/index.d.ts +14 -6
- package/System.Xml.Xsl/internal/index.d.ts +16 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +88 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -139,6 +139,8 @@ export interface ITuple$instance {
|
|
|
139
139
|
export type ITuple = ITuple$instance;
|
|
140
140
|
|
|
141
141
|
export interface AsyncIteratorMethodBuilder$instance {
|
|
142
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncIteratorMethodBuilder: never;
|
|
143
|
+
|
|
142
144
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
143
145
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
144
146
|
Complete(): void;
|
|
@@ -155,6 +157,8 @@ export const AsyncIteratorMethodBuilder: {
|
|
|
155
157
|
export type AsyncIteratorMethodBuilder = AsyncIteratorMethodBuilder$instance;
|
|
156
158
|
|
|
157
159
|
export interface AsyncTaskMethodBuilder$instance {
|
|
160
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncTaskMethodBuilder: never;
|
|
161
|
+
|
|
158
162
|
readonly Task: Task;
|
|
159
163
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
160
164
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
@@ -174,6 +178,8 @@ export const AsyncTaskMethodBuilder: {
|
|
|
174
178
|
export type AsyncTaskMethodBuilder = AsyncTaskMethodBuilder$instance;
|
|
175
179
|
|
|
176
180
|
export interface AsyncTaskMethodBuilder_1$instance<TResult> {
|
|
181
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncTaskMethodBuilder_1: never;
|
|
182
|
+
|
|
177
183
|
readonly Task: Task_1<TResult>;
|
|
178
184
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
179
185
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
@@ -193,6 +199,8 @@ export const AsyncTaskMethodBuilder_1: {
|
|
|
193
199
|
export type AsyncTaskMethodBuilder_1<TResult> = AsyncTaskMethodBuilder_1$instance<TResult>;
|
|
194
200
|
|
|
195
201
|
export interface AsyncValueTaskMethodBuilder$instance {
|
|
202
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncValueTaskMethodBuilder: never;
|
|
203
|
+
|
|
196
204
|
readonly Task: ValueTask;
|
|
197
205
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
198
206
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
@@ -212,6 +220,8 @@ export const AsyncValueTaskMethodBuilder: {
|
|
|
212
220
|
export type AsyncValueTaskMethodBuilder = AsyncValueTaskMethodBuilder$instance;
|
|
213
221
|
|
|
214
222
|
export interface AsyncValueTaskMethodBuilder_1$instance<TResult> {
|
|
223
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncValueTaskMethodBuilder_1: never;
|
|
224
|
+
|
|
215
225
|
readonly Task: ValueTask_1<TResult>;
|
|
216
226
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
217
227
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
@@ -231,6 +241,8 @@ export const AsyncValueTaskMethodBuilder_1: {
|
|
|
231
241
|
export type AsyncValueTaskMethodBuilder_1<TResult> = AsyncValueTaskMethodBuilder_1$instance<TResult>;
|
|
232
242
|
|
|
233
243
|
export interface AsyncVoidMethodBuilder$instance {
|
|
244
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncVoidMethodBuilder: never;
|
|
245
|
+
|
|
234
246
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
235
247
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
236
248
|
SetException(exception: Exception): void;
|
|
@@ -249,6 +261,8 @@ export const AsyncVoidMethodBuilder: {
|
|
|
249
261
|
export type AsyncVoidMethodBuilder = AsyncVoidMethodBuilder$instance;
|
|
250
262
|
|
|
251
263
|
export interface ConfiguredAsyncDisposable$instance {
|
|
264
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredAsyncDisposable: never;
|
|
265
|
+
|
|
252
266
|
DisposeAsync(): ConfiguredValueTaskAwaitable;
|
|
253
267
|
}
|
|
254
268
|
|
|
@@ -261,6 +275,8 @@ export const ConfiguredAsyncDisposable: {
|
|
|
261
275
|
export type ConfiguredAsyncDisposable = ConfiguredAsyncDisposable$instance;
|
|
262
276
|
|
|
263
277
|
export interface ConfiguredCancelableAsyncEnumerable_1$instance<T> {
|
|
278
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredCancelableAsyncEnumerable_1: never;
|
|
279
|
+
|
|
264
280
|
ConfigureAwait(continueOnCapturedContext: boolean): ConfiguredCancelableAsyncEnumerable_1<T>;
|
|
265
281
|
GetAsyncEnumerator(): ConfiguredCancelableAsyncEnumerable_1_Enumerator<T>;
|
|
266
282
|
WithCancellation(cancellationToken: CancellationToken): ConfiguredCancelableAsyncEnumerable_1<T>;
|
|
@@ -275,6 +291,8 @@ export const ConfiguredCancelableAsyncEnumerable_1: {
|
|
|
275
291
|
export type ConfiguredCancelableAsyncEnumerable_1<T> = ConfiguredCancelableAsyncEnumerable_1$instance<T>;
|
|
276
292
|
|
|
277
293
|
export interface ConfiguredCancelableAsyncEnumerable_1_Enumerator$instance<T> {
|
|
294
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredCancelableAsyncEnumerable_1_Enumerator: never;
|
|
295
|
+
|
|
278
296
|
readonly Current: T;
|
|
279
297
|
DisposeAsync(): ConfiguredValueTaskAwaitable;
|
|
280
298
|
MoveNextAsync(): ConfiguredValueTaskAwaitable_1<System_Internal.Boolean>;
|
|
@@ -289,6 +307,8 @@ export const ConfiguredCancelableAsyncEnumerable_1_Enumerator: {
|
|
|
289
307
|
export type ConfiguredCancelableAsyncEnumerable_1_Enumerator<T> = ConfiguredCancelableAsyncEnumerable_1_Enumerator$instance<T>;
|
|
290
308
|
|
|
291
309
|
export interface ConfiguredTaskAwaitable$instance {
|
|
310
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredTaskAwaitable: never;
|
|
311
|
+
|
|
292
312
|
GetAwaiter(): ConfiguredTaskAwaitable_ConfiguredTaskAwaiter;
|
|
293
313
|
}
|
|
294
314
|
|
|
@@ -301,6 +321,8 @@ export const ConfiguredTaskAwaitable: {
|
|
|
301
321
|
export type ConfiguredTaskAwaitable = ConfiguredTaskAwaitable$instance;
|
|
302
322
|
|
|
303
323
|
export interface ConfiguredTaskAwaitable_1$instance<TResult> {
|
|
324
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredTaskAwaitable_1: never;
|
|
325
|
+
|
|
304
326
|
GetAwaiter(): ConfiguredTaskAwaitable_1_ConfiguredTaskAwaiter<TResult>;
|
|
305
327
|
}
|
|
306
328
|
|
|
@@ -312,7 +334,10 @@ export const ConfiguredTaskAwaitable_1: {
|
|
|
312
334
|
|
|
313
335
|
export type ConfiguredTaskAwaitable_1<TResult> = ConfiguredTaskAwaitable_1$instance<TResult>;
|
|
314
336
|
|
|
315
|
-
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;
|
|
316
341
|
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
317
342
|
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
318
343
|
|
|
@@ -332,12 +357,13 @@ export interface __ConfiguredTaskAwaitable_1_ConfiguredTaskAwaiter$views<TResult
|
|
|
332
357
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
333
358
|
}
|
|
334
359
|
|
|
335
|
-
export interface ConfiguredTaskAwaitable_1_ConfiguredTaskAwaiter$instance<TResult> extends ICriticalNotifyCompletion$instance {}
|
|
336
|
-
|
|
337
360
|
export type ConfiguredTaskAwaitable_1_ConfiguredTaskAwaiter<TResult> = ConfiguredTaskAwaitable_1_ConfiguredTaskAwaiter$instance<TResult> & __ConfiguredTaskAwaitable_1_ConfiguredTaskAwaiter$views<TResult>;
|
|
338
361
|
|
|
339
362
|
|
|
340
|
-
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;
|
|
341
367
|
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
342
368
|
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
343
369
|
|
|
@@ -357,12 +383,12 @@ export interface __ConfiguredTaskAwaitable_ConfiguredTaskAwaiter$views {
|
|
|
357
383
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
358
384
|
}
|
|
359
385
|
|
|
360
|
-
export interface ConfiguredTaskAwaitable_ConfiguredTaskAwaiter$instance extends ICriticalNotifyCompletion$instance {}
|
|
361
|
-
|
|
362
386
|
export type ConfiguredTaskAwaitable_ConfiguredTaskAwaiter = ConfiguredTaskAwaitable_ConfiguredTaskAwaiter$instance & __ConfiguredTaskAwaitable_ConfiguredTaskAwaiter$views;
|
|
363
387
|
|
|
364
388
|
|
|
365
389
|
export interface ConfiguredValueTaskAwaitable$instance {
|
|
390
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredValueTaskAwaitable: never;
|
|
391
|
+
|
|
366
392
|
GetAwaiter(): ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter;
|
|
367
393
|
}
|
|
368
394
|
|
|
@@ -375,6 +401,8 @@ export const ConfiguredValueTaskAwaitable: {
|
|
|
375
401
|
export type ConfiguredValueTaskAwaitable = ConfiguredValueTaskAwaitable$instance;
|
|
376
402
|
|
|
377
403
|
export interface ConfiguredValueTaskAwaitable_1$instance<TResult> {
|
|
404
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ConfiguredValueTaskAwaitable_1: never;
|
|
405
|
+
|
|
378
406
|
GetAwaiter(): ConfiguredValueTaskAwaitable_1_ConfiguredValueTaskAwaiter<TResult>;
|
|
379
407
|
}
|
|
380
408
|
|
|
@@ -386,7 +414,9 @@ export const ConfiguredValueTaskAwaitable_1: {
|
|
|
386
414
|
|
|
387
415
|
export type ConfiguredValueTaskAwaitable_1<TResult> = ConfiguredValueTaskAwaitable_1$instance<TResult>;
|
|
388
416
|
|
|
389
|
-
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
|
+
|
|
390
420
|
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
391
421
|
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
392
422
|
|
|
@@ -406,12 +436,12 @@ export interface __ConfiguredValueTaskAwaitable_1_ConfiguredValueTaskAwaiter$vie
|
|
|
406
436
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
407
437
|
}
|
|
408
438
|
|
|
409
|
-
export interface ConfiguredValueTaskAwaitable_1_ConfiguredValueTaskAwaiter$instance<TResult> extends ICriticalNotifyCompletion$instance {}
|
|
410
|
-
|
|
411
439
|
export type ConfiguredValueTaskAwaitable_1_ConfiguredValueTaskAwaiter<TResult> = ConfiguredValueTaskAwaitable_1_ConfiguredValueTaskAwaiter$instance<TResult> & __ConfiguredValueTaskAwaitable_1_ConfiguredValueTaskAwaiter$views<TResult>;
|
|
412
440
|
|
|
413
441
|
|
|
414
|
-
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
|
+
|
|
415
445
|
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
416
446
|
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
417
447
|
|
|
@@ -431,12 +461,12 @@ export interface __ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter$views
|
|
|
431
461
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
432
462
|
}
|
|
433
463
|
|
|
434
|
-
export interface ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter$instance extends ICriticalNotifyCompletion$instance {}
|
|
435
|
-
|
|
436
464
|
export type ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter = ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter$instance & __ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter$views;
|
|
437
465
|
|
|
438
466
|
|
|
439
467
|
export interface DefaultInterpolatedStringHandler$instance {
|
|
468
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DefaultInterpolatedStringHandler: never;
|
|
469
|
+
|
|
440
470
|
readonly Text: ReadOnlySpan_1<System_Internal.Char>;
|
|
441
471
|
AppendFormatted<T>(value: T): void;
|
|
442
472
|
AppendFormatted<T>(value: T, format: string): void;
|
|
@@ -464,6 +494,8 @@ export const DefaultInterpolatedStringHandler: {
|
|
|
464
494
|
export type DefaultInterpolatedStringHandler = DefaultInterpolatedStringHandler$instance;
|
|
465
495
|
|
|
466
496
|
export interface InlineArray10_1$instance<T> {
|
|
497
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray10_1: never;
|
|
498
|
+
|
|
467
499
|
}
|
|
468
500
|
|
|
469
501
|
|
|
@@ -475,6 +507,8 @@ export const InlineArray10_1: {
|
|
|
475
507
|
export type InlineArray10_1<T> = InlineArray10_1$instance<T>;
|
|
476
508
|
|
|
477
509
|
export interface InlineArray11_1$instance<T> {
|
|
510
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray11_1: never;
|
|
511
|
+
|
|
478
512
|
}
|
|
479
513
|
|
|
480
514
|
|
|
@@ -486,6 +520,8 @@ export const InlineArray11_1: {
|
|
|
486
520
|
export type InlineArray11_1<T> = InlineArray11_1$instance<T>;
|
|
487
521
|
|
|
488
522
|
export interface InlineArray12_1$instance<T> {
|
|
523
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray12_1: never;
|
|
524
|
+
|
|
489
525
|
}
|
|
490
526
|
|
|
491
527
|
|
|
@@ -497,6 +533,8 @@ export const InlineArray12_1: {
|
|
|
497
533
|
export type InlineArray12_1<T> = InlineArray12_1$instance<T>;
|
|
498
534
|
|
|
499
535
|
export interface InlineArray13_1$instance<T> {
|
|
536
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray13_1: never;
|
|
537
|
+
|
|
500
538
|
}
|
|
501
539
|
|
|
502
540
|
|
|
@@ -508,6 +546,8 @@ export const InlineArray13_1: {
|
|
|
508
546
|
export type InlineArray13_1<T> = InlineArray13_1$instance<T>;
|
|
509
547
|
|
|
510
548
|
export interface InlineArray14_1$instance<T> {
|
|
549
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray14_1: never;
|
|
550
|
+
|
|
511
551
|
}
|
|
512
552
|
|
|
513
553
|
|
|
@@ -519,6 +559,8 @@ export const InlineArray14_1: {
|
|
|
519
559
|
export type InlineArray14_1<T> = InlineArray14_1$instance<T>;
|
|
520
560
|
|
|
521
561
|
export interface InlineArray15_1$instance<T> {
|
|
562
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray15_1: never;
|
|
563
|
+
|
|
522
564
|
}
|
|
523
565
|
|
|
524
566
|
|
|
@@ -530,6 +572,8 @@ export const InlineArray15_1: {
|
|
|
530
572
|
export type InlineArray15_1<T> = InlineArray15_1$instance<T>;
|
|
531
573
|
|
|
532
574
|
export interface InlineArray16_1$instance<T> {
|
|
575
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray16_1: never;
|
|
576
|
+
|
|
533
577
|
}
|
|
534
578
|
|
|
535
579
|
|
|
@@ -541,6 +585,8 @@ export const InlineArray16_1: {
|
|
|
541
585
|
export type InlineArray16_1<T> = InlineArray16_1$instance<T>;
|
|
542
586
|
|
|
543
587
|
export interface InlineArray2_1$instance<T> {
|
|
588
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray2_1: never;
|
|
589
|
+
|
|
544
590
|
}
|
|
545
591
|
|
|
546
592
|
|
|
@@ -552,6 +598,8 @@ export const InlineArray2_1: {
|
|
|
552
598
|
export type InlineArray2_1<T> = InlineArray2_1$instance<T>;
|
|
553
599
|
|
|
554
600
|
export interface InlineArray3_1$instance<T> {
|
|
601
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray3_1: never;
|
|
602
|
+
|
|
555
603
|
}
|
|
556
604
|
|
|
557
605
|
|
|
@@ -563,6 +611,8 @@ export const InlineArray3_1: {
|
|
|
563
611
|
export type InlineArray3_1<T> = InlineArray3_1$instance<T>;
|
|
564
612
|
|
|
565
613
|
export interface InlineArray4_1$instance<T> {
|
|
614
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray4_1: never;
|
|
615
|
+
|
|
566
616
|
}
|
|
567
617
|
|
|
568
618
|
|
|
@@ -574,6 +624,8 @@ export const InlineArray4_1: {
|
|
|
574
624
|
export type InlineArray4_1<T> = InlineArray4_1$instance<T>;
|
|
575
625
|
|
|
576
626
|
export interface InlineArray5_1$instance<T> {
|
|
627
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray5_1: never;
|
|
628
|
+
|
|
577
629
|
}
|
|
578
630
|
|
|
579
631
|
|
|
@@ -585,6 +637,8 @@ export const InlineArray5_1: {
|
|
|
585
637
|
export type InlineArray5_1<T> = InlineArray5_1$instance<T>;
|
|
586
638
|
|
|
587
639
|
export interface InlineArray6_1$instance<T> {
|
|
640
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray6_1: never;
|
|
641
|
+
|
|
588
642
|
}
|
|
589
643
|
|
|
590
644
|
|
|
@@ -596,6 +650,8 @@ export const InlineArray6_1: {
|
|
|
596
650
|
export type InlineArray6_1<T> = InlineArray6_1$instance<T>;
|
|
597
651
|
|
|
598
652
|
export interface InlineArray7_1$instance<T> {
|
|
653
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray7_1: never;
|
|
654
|
+
|
|
599
655
|
}
|
|
600
656
|
|
|
601
657
|
|
|
@@ -607,6 +663,8 @@ export const InlineArray7_1: {
|
|
|
607
663
|
export type InlineArray7_1<T> = InlineArray7_1$instance<T>;
|
|
608
664
|
|
|
609
665
|
export interface InlineArray8_1$instance<T> {
|
|
666
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray8_1: never;
|
|
667
|
+
|
|
610
668
|
}
|
|
611
669
|
|
|
612
670
|
|
|
@@ -618,6 +676,8 @@ export const InlineArray8_1: {
|
|
|
618
676
|
export type InlineArray8_1<T> = InlineArray8_1$instance<T>;
|
|
619
677
|
|
|
620
678
|
export interface InlineArray9_1$instance<T> {
|
|
679
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArray9_1: never;
|
|
680
|
+
|
|
621
681
|
}
|
|
622
682
|
|
|
623
683
|
|
|
@@ -629,6 +689,8 @@ export const InlineArray9_1: {
|
|
|
629
689
|
export type InlineArray9_1<T> = InlineArray9_1$instance<T>;
|
|
630
690
|
|
|
631
691
|
export interface PoolingAsyncValueTaskMethodBuilder$instance {
|
|
692
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_PoolingAsyncValueTaskMethodBuilder: never;
|
|
693
|
+
|
|
632
694
|
readonly Task: ValueTask;
|
|
633
695
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
634
696
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
@@ -648,6 +710,8 @@ export const PoolingAsyncValueTaskMethodBuilder: {
|
|
|
648
710
|
export type PoolingAsyncValueTaskMethodBuilder = PoolingAsyncValueTaskMethodBuilder$instance;
|
|
649
711
|
|
|
650
712
|
export interface PoolingAsyncValueTaskMethodBuilder_1$instance<TResult> {
|
|
713
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_PoolingAsyncValueTaskMethodBuilder_1: never;
|
|
714
|
+
|
|
651
715
|
readonly Task: ValueTask_1<TResult>;
|
|
652
716
|
AwaitOnCompleted<TAwaiter extends INotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
653
717
|
AwaitUnsafeOnCompleted<TAwaiter extends ICriticalNotifyCompletion, TStateMachine extends IAsyncStateMachine>(awaiter: TAwaiter, stateMachine: TStateMachine): void;
|
|
@@ -666,7 +730,9 @@ export const PoolingAsyncValueTaskMethodBuilder_1: {
|
|
|
666
730
|
|
|
667
731
|
export type PoolingAsyncValueTaskMethodBuilder_1<TResult> = PoolingAsyncValueTaskMethodBuilder_1$instance<TResult>;
|
|
668
732
|
|
|
669
|
-
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
|
+
|
|
670
736
|
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
671
737
|
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
672
738
|
|
|
@@ -686,12 +752,12 @@ export interface __TaskAwaiter$views {
|
|
|
686
752
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
687
753
|
}
|
|
688
754
|
|
|
689
|
-
export interface TaskAwaiter$instance extends ICriticalNotifyCompletion$instance {}
|
|
690
|
-
|
|
691
755
|
export type TaskAwaiter = TaskAwaiter$instance & __TaskAwaiter$views;
|
|
692
756
|
|
|
693
757
|
|
|
694
|
-
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
|
+
|
|
695
761
|
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
696
762
|
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
697
763
|
|
|
@@ -711,12 +777,12 @@ export interface __TaskAwaiter_1$views<TResult> {
|
|
|
711
777
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
712
778
|
}
|
|
713
779
|
|
|
714
|
-
export interface TaskAwaiter_1$instance<TResult> extends ICriticalNotifyCompletion$instance {}
|
|
715
|
-
|
|
716
780
|
export type TaskAwaiter_1<TResult> = TaskAwaiter_1$instance<TResult> & __TaskAwaiter_1$views<TResult>;
|
|
717
781
|
|
|
718
782
|
|
|
719
|
-
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
|
+
|
|
720
786
|
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
721
787
|
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
722
788
|
|
|
@@ -736,12 +802,12 @@ export interface __ValueTaskAwaiter$views {
|
|
|
736
802
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
737
803
|
}
|
|
738
804
|
|
|
739
|
-
export interface ValueTaskAwaiter$instance extends ICriticalNotifyCompletion$instance {}
|
|
740
|
-
|
|
741
805
|
export type ValueTaskAwaiter = ValueTaskAwaiter$instance & __ValueTaskAwaiter$views;
|
|
742
806
|
|
|
743
807
|
|
|
744
|
-
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
|
+
|
|
745
811
|
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
746
812
|
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
747
813
|
|
|
@@ -761,12 +827,12 @@ export interface __ValueTaskAwaiter_1$views<TResult> {
|
|
|
761
827
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
762
828
|
}
|
|
763
829
|
|
|
764
|
-
export interface ValueTaskAwaiter_1$instance<TResult> extends ICriticalNotifyCompletion$instance {}
|
|
765
|
-
|
|
766
830
|
export type ValueTaskAwaiter_1<TResult> = ValueTaskAwaiter_1$instance<TResult> & __ValueTaskAwaiter_1$views<TResult>;
|
|
767
831
|
|
|
768
832
|
|
|
769
833
|
export interface YieldAwaitable$instance {
|
|
834
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_YieldAwaitable: never;
|
|
835
|
+
|
|
770
836
|
GetAwaiter(): YieldAwaitable_YieldAwaiter;
|
|
771
837
|
}
|
|
772
838
|
|
|
@@ -778,7 +844,9 @@ export const YieldAwaitable: {
|
|
|
778
844
|
|
|
779
845
|
export type YieldAwaitable = YieldAwaitable$instance;
|
|
780
846
|
|
|
781
|
-
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
|
+
|
|
782
850
|
readonly __tsonic_iface_System_Runtime_CompilerServices_ICriticalNotifyCompletion: never;
|
|
783
851
|
readonly __tsonic_iface_System_Runtime_CompilerServices_INotifyCompletion: never;
|
|
784
852
|
|
|
@@ -798,12 +866,12 @@ export interface __YieldAwaitable_YieldAwaiter$views {
|
|
|
798
866
|
As_INotifyCompletion(): INotifyCompletion$instance;
|
|
799
867
|
}
|
|
800
868
|
|
|
801
|
-
export interface YieldAwaitable_YieldAwaiter$instance extends ICriticalNotifyCompletion$instance {}
|
|
802
|
-
|
|
803
869
|
export type YieldAwaitable_YieldAwaiter = YieldAwaitable_YieldAwaiter$instance & __YieldAwaitable_YieldAwaiter$views;
|
|
804
870
|
|
|
805
871
|
|
|
806
872
|
export interface AccessedThroughPropertyAttribute$instance extends Attribute {
|
|
873
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AccessedThroughPropertyAttribute: never;
|
|
874
|
+
|
|
807
875
|
readonly PropertyName: string;
|
|
808
876
|
}
|
|
809
877
|
|
|
@@ -816,6 +884,8 @@ export const AccessedThroughPropertyAttribute: {
|
|
|
816
884
|
export type AccessedThroughPropertyAttribute = AccessedThroughPropertyAttribute$instance;
|
|
817
885
|
|
|
818
886
|
export interface AsyncIteratorStateMachineAttribute$instance extends StateMachineAttribute {
|
|
887
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncIteratorStateMachineAttribute: never;
|
|
888
|
+
|
|
819
889
|
}
|
|
820
890
|
|
|
821
891
|
|
|
@@ -827,6 +897,8 @@ export const AsyncIteratorStateMachineAttribute: {
|
|
|
827
897
|
export type AsyncIteratorStateMachineAttribute = AsyncIteratorStateMachineAttribute$instance;
|
|
828
898
|
|
|
829
899
|
export interface AsyncMethodBuilderAttribute$instance extends Attribute {
|
|
900
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncMethodBuilderAttribute: never;
|
|
901
|
+
|
|
830
902
|
readonly BuilderType: Type;
|
|
831
903
|
}
|
|
832
904
|
|
|
@@ -839,6 +911,8 @@ export const AsyncMethodBuilderAttribute: {
|
|
|
839
911
|
export type AsyncMethodBuilderAttribute = AsyncMethodBuilderAttribute$instance;
|
|
840
912
|
|
|
841
913
|
export interface AsyncStateMachineAttribute$instance extends StateMachineAttribute {
|
|
914
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_AsyncStateMachineAttribute: never;
|
|
915
|
+
|
|
842
916
|
}
|
|
843
917
|
|
|
844
918
|
|
|
@@ -850,6 +924,8 @@ export const AsyncStateMachineAttribute: {
|
|
|
850
924
|
export type AsyncStateMachineAttribute = AsyncStateMachineAttribute$instance;
|
|
851
925
|
|
|
852
926
|
export interface CallConvCdecl$instance {
|
|
927
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallConvCdecl: never;
|
|
928
|
+
|
|
853
929
|
}
|
|
854
930
|
|
|
855
931
|
|
|
@@ -861,6 +937,8 @@ export const CallConvCdecl: {
|
|
|
861
937
|
export type CallConvCdecl = CallConvCdecl$instance;
|
|
862
938
|
|
|
863
939
|
export interface CallConvFastcall$instance {
|
|
940
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallConvFastcall: never;
|
|
941
|
+
|
|
864
942
|
}
|
|
865
943
|
|
|
866
944
|
|
|
@@ -872,6 +950,8 @@ export const CallConvFastcall: {
|
|
|
872
950
|
export type CallConvFastcall = CallConvFastcall$instance;
|
|
873
951
|
|
|
874
952
|
export interface CallConvMemberFunction$instance {
|
|
953
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallConvMemberFunction: never;
|
|
954
|
+
|
|
875
955
|
}
|
|
876
956
|
|
|
877
957
|
|
|
@@ -883,6 +963,8 @@ export const CallConvMemberFunction: {
|
|
|
883
963
|
export type CallConvMemberFunction = CallConvMemberFunction$instance;
|
|
884
964
|
|
|
885
965
|
export interface CallConvStdcall$instance {
|
|
966
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallConvStdcall: never;
|
|
967
|
+
|
|
886
968
|
}
|
|
887
969
|
|
|
888
970
|
|
|
@@ -894,6 +976,8 @@ export const CallConvStdcall: {
|
|
|
894
976
|
export type CallConvStdcall = CallConvStdcall$instance;
|
|
895
977
|
|
|
896
978
|
export interface CallConvSuppressGCTransition$instance {
|
|
979
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallConvSuppressGCTransition: never;
|
|
980
|
+
|
|
897
981
|
}
|
|
898
982
|
|
|
899
983
|
|
|
@@ -905,6 +989,8 @@ export const CallConvSuppressGCTransition: {
|
|
|
905
989
|
export type CallConvSuppressGCTransition = CallConvSuppressGCTransition$instance;
|
|
906
990
|
|
|
907
991
|
export interface CallConvSwift$instance {
|
|
992
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallConvSwift: never;
|
|
993
|
+
|
|
908
994
|
}
|
|
909
995
|
|
|
910
996
|
|
|
@@ -916,6 +1002,8 @@ export const CallConvSwift: {
|
|
|
916
1002
|
export type CallConvSwift = CallConvSwift$instance;
|
|
917
1003
|
|
|
918
1004
|
export interface CallConvThiscall$instance {
|
|
1005
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallConvThiscall: never;
|
|
1006
|
+
|
|
919
1007
|
}
|
|
920
1008
|
|
|
921
1009
|
|
|
@@ -927,6 +1015,8 @@ export const CallConvThiscall: {
|
|
|
927
1015
|
export type CallConvThiscall = CallConvThiscall$instance;
|
|
928
1016
|
|
|
929
1017
|
export interface CallerArgumentExpressionAttribute$instance extends Attribute {
|
|
1018
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallerArgumentExpressionAttribute: never;
|
|
1019
|
+
|
|
930
1020
|
readonly ParameterName: string;
|
|
931
1021
|
}
|
|
932
1022
|
|
|
@@ -939,6 +1029,8 @@ export const CallerArgumentExpressionAttribute: {
|
|
|
939
1029
|
export type CallerArgumentExpressionAttribute = CallerArgumentExpressionAttribute$instance;
|
|
940
1030
|
|
|
941
1031
|
export interface CallerFilePathAttribute$instance extends Attribute {
|
|
1032
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallerFilePathAttribute: never;
|
|
1033
|
+
|
|
942
1034
|
}
|
|
943
1035
|
|
|
944
1036
|
|
|
@@ -950,6 +1042,8 @@ export const CallerFilePathAttribute: {
|
|
|
950
1042
|
export type CallerFilePathAttribute = CallerFilePathAttribute$instance;
|
|
951
1043
|
|
|
952
1044
|
export interface CallerLineNumberAttribute$instance extends Attribute {
|
|
1045
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallerLineNumberAttribute: never;
|
|
1046
|
+
|
|
953
1047
|
}
|
|
954
1048
|
|
|
955
1049
|
|
|
@@ -961,6 +1055,8 @@ export const CallerLineNumberAttribute: {
|
|
|
961
1055
|
export type CallerLineNumberAttribute = CallerLineNumberAttribute$instance;
|
|
962
1056
|
|
|
963
1057
|
export interface CallerMemberNameAttribute$instance extends Attribute {
|
|
1058
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallerMemberNameAttribute: never;
|
|
1059
|
+
|
|
964
1060
|
}
|
|
965
1061
|
|
|
966
1062
|
|
|
@@ -972,6 +1068,8 @@ export const CallerMemberNameAttribute: {
|
|
|
972
1068
|
export type CallerMemberNameAttribute = CallerMemberNameAttribute$instance;
|
|
973
1069
|
|
|
974
1070
|
export interface CallSite$instance {
|
|
1071
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallSite: never;
|
|
1072
|
+
|
|
975
1073
|
readonly Binder: CallSiteBinder | undefined;
|
|
976
1074
|
}
|
|
977
1075
|
|
|
@@ -984,6 +1082,8 @@ export const CallSite: {
|
|
|
984
1082
|
export type CallSite = CallSite$instance;
|
|
985
1083
|
|
|
986
1084
|
export interface CallSite_1$instance<T> extends CallSite {
|
|
1085
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallSite_1: never;
|
|
1086
|
+
|
|
987
1087
|
Target: T;
|
|
988
1088
|
readonly Update: T;
|
|
989
1089
|
}
|
|
@@ -996,6 +1096,8 @@ export const CallSite_1: {
|
|
|
996
1096
|
export type CallSite_1<T> = CallSite_1$instance<T>;
|
|
997
1097
|
|
|
998
1098
|
export interface CallSiteBinder$instance {
|
|
1099
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CallSiteBinder: never;
|
|
1100
|
+
|
|
999
1101
|
Bind(args: unknown[], parameters: ReadOnlyCollection_1<ParameterExpression>, returnLabel: LabelTarget): Expression;
|
|
1000
1102
|
BindDelegate<T>(site: CallSite_1<T>, args: unknown[]): T | undefined;
|
|
1001
1103
|
}
|
|
@@ -1009,6 +1111,8 @@ export const CallSiteBinder: (abstract new() => CallSiteBinder) & {
|
|
|
1009
1111
|
export type CallSiteBinder = CallSiteBinder$instance;
|
|
1010
1112
|
|
|
1011
1113
|
export interface Closure$instance {
|
|
1114
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_Closure: never;
|
|
1115
|
+
|
|
1012
1116
|
readonly Constants: unknown[];
|
|
1013
1117
|
readonly Locals: unknown[] | undefined;
|
|
1014
1118
|
}
|
|
@@ -1022,6 +1126,8 @@ export const Closure: {
|
|
|
1022
1126
|
export type Closure = Closure$instance;
|
|
1023
1127
|
|
|
1024
1128
|
export interface CollectionBuilderAttribute$instance extends Attribute {
|
|
1129
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CollectionBuilderAttribute: never;
|
|
1130
|
+
|
|
1025
1131
|
readonly BuilderType: Type;
|
|
1026
1132
|
readonly MethodName: string;
|
|
1027
1133
|
}
|
|
@@ -1035,6 +1141,8 @@ export const CollectionBuilderAttribute: {
|
|
|
1035
1141
|
export type CollectionBuilderAttribute = CollectionBuilderAttribute$instance;
|
|
1036
1142
|
|
|
1037
1143
|
export interface CompilationRelaxationsAttribute$instance extends Attribute {
|
|
1144
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CompilationRelaxationsAttribute: never;
|
|
1145
|
+
|
|
1038
1146
|
readonly CompilationRelaxations: int;
|
|
1039
1147
|
}
|
|
1040
1148
|
|
|
@@ -1048,6 +1156,8 @@ export const CompilationRelaxationsAttribute: {
|
|
|
1048
1156
|
export type CompilationRelaxationsAttribute = CompilationRelaxationsAttribute$instance;
|
|
1049
1157
|
|
|
1050
1158
|
export interface CompilerFeatureRequiredAttribute$instance extends Attribute {
|
|
1159
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CompilerFeatureRequiredAttribute: never;
|
|
1160
|
+
|
|
1051
1161
|
readonly FeatureName: string;
|
|
1052
1162
|
IsOptional: boolean;
|
|
1053
1163
|
}
|
|
@@ -1063,6 +1173,8 @@ export const CompilerFeatureRequiredAttribute: {
|
|
|
1063
1173
|
export type CompilerFeatureRequiredAttribute = CompilerFeatureRequiredAttribute$instance;
|
|
1064
1174
|
|
|
1065
1175
|
export interface CompilerGeneratedAttribute$instance extends Attribute {
|
|
1176
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CompilerGeneratedAttribute: never;
|
|
1177
|
+
|
|
1066
1178
|
}
|
|
1067
1179
|
|
|
1068
1180
|
|
|
@@ -1074,6 +1186,8 @@ export const CompilerGeneratedAttribute: {
|
|
|
1074
1186
|
export type CompilerGeneratedAttribute = CompilerGeneratedAttribute$instance;
|
|
1075
1187
|
|
|
1076
1188
|
export interface CompilerGlobalScopeAttribute$instance extends Attribute {
|
|
1189
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CompilerGlobalScopeAttribute: never;
|
|
1190
|
+
|
|
1077
1191
|
}
|
|
1078
1192
|
|
|
1079
1193
|
|
|
@@ -1085,6 +1199,8 @@ export const CompilerGlobalScopeAttribute: {
|
|
|
1085
1199
|
export type CompilerGlobalScopeAttribute = CompilerGlobalScopeAttribute$instance;
|
|
1086
1200
|
|
|
1087
1201
|
export interface CompilerLoweringPreserveAttribute$instance extends Attribute {
|
|
1202
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CompilerLoweringPreserveAttribute: never;
|
|
1203
|
+
|
|
1088
1204
|
}
|
|
1089
1205
|
|
|
1090
1206
|
|
|
@@ -1095,7 +1211,9 @@ export const CompilerLoweringPreserveAttribute: {
|
|
|
1095
1211
|
|
|
1096
1212
|
export type CompilerLoweringPreserveAttribute = CompilerLoweringPreserveAttribute$instance;
|
|
1097
1213
|
|
|
1098
|
-
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
|
+
|
|
1099
1217
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1100
1218
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1101
1219
|
|
|
@@ -1124,12 +1242,12 @@ export interface __ConditionalWeakTable_2$views<TKey, TValue> {
|
|
|
1124
1242
|
As_IEnumerable(): System_Collections_Internal.IEnumerable$instance;
|
|
1125
1243
|
}
|
|
1126
1244
|
|
|
1127
|
-
export interface ConditionalWeakTable_2$instance<TKey, TValue> extends System_Collections_Generic_Internal.IEnumerable_1$instance<KeyValuePair_2<TKey, TValue>> {}
|
|
1128
|
-
|
|
1129
1245
|
export type ConditionalWeakTable_2<TKey, TValue> = ConditionalWeakTable_2$instance<TKey, TValue> & __ConditionalWeakTable_2$views<TKey, TValue>;
|
|
1130
1246
|
|
|
1131
1247
|
|
|
1132
1248
|
export interface CppInlineNamespaceAttribute$instance extends Attribute {
|
|
1249
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CppInlineNamespaceAttribute: never;
|
|
1250
|
+
|
|
1133
1251
|
}
|
|
1134
1252
|
|
|
1135
1253
|
|
|
@@ -1141,6 +1259,8 @@ export const CppInlineNamespaceAttribute: {
|
|
|
1141
1259
|
export type CppInlineNamespaceAttribute = CppInlineNamespaceAttribute$instance;
|
|
1142
1260
|
|
|
1143
1261
|
export interface CreateNewOnMetadataUpdateAttribute$instance extends Attribute {
|
|
1262
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CreateNewOnMetadataUpdateAttribute: never;
|
|
1263
|
+
|
|
1144
1264
|
}
|
|
1145
1265
|
|
|
1146
1266
|
|
|
@@ -1152,6 +1272,8 @@ export const CreateNewOnMetadataUpdateAttribute: {
|
|
|
1152
1272
|
export type CreateNewOnMetadataUpdateAttribute = CreateNewOnMetadataUpdateAttribute$instance;
|
|
1153
1273
|
|
|
1154
1274
|
export interface CustomConstantAttribute$instance extends Attribute {
|
|
1275
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_CustomConstantAttribute: never;
|
|
1276
|
+
|
|
1155
1277
|
readonly Value: unknown | unknown | undefined;
|
|
1156
1278
|
}
|
|
1157
1279
|
|
|
@@ -1163,6 +1285,8 @@ export const CustomConstantAttribute: (abstract new() => CustomConstantAttribute
|
|
|
1163
1285
|
export type CustomConstantAttribute = CustomConstantAttribute$instance;
|
|
1164
1286
|
|
|
1165
1287
|
export interface DateTimeConstantAttribute$instance extends CustomConstantAttribute {
|
|
1288
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DateTimeConstantAttribute: never;
|
|
1289
|
+
|
|
1166
1290
|
readonly Value: unknown | unknown | undefined;
|
|
1167
1291
|
}
|
|
1168
1292
|
|
|
@@ -1175,6 +1299,8 @@ export const DateTimeConstantAttribute: {
|
|
|
1175
1299
|
export type DateTimeConstantAttribute = DateTimeConstantAttribute$instance;
|
|
1176
1300
|
|
|
1177
1301
|
export interface DebugInfoGenerator$instance {
|
|
1302
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DebugInfoGenerator: never;
|
|
1303
|
+
|
|
1178
1304
|
MarkSequencePoint(method: LambdaExpression, ilOffset: int, sequencePoint: DebugInfoExpression): void;
|
|
1179
1305
|
}
|
|
1180
1306
|
|
|
@@ -1187,6 +1313,8 @@ export const DebugInfoGenerator: (abstract new() => DebugInfoGenerator) & {
|
|
|
1187
1313
|
export type DebugInfoGenerator = DebugInfoGenerator$instance;
|
|
1188
1314
|
|
|
1189
1315
|
export interface DecimalConstantAttribute$instance extends Attribute {
|
|
1316
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DecimalConstantAttribute: never;
|
|
1317
|
+
|
|
1190
1318
|
readonly Value: decimal;
|
|
1191
1319
|
}
|
|
1192
1320
|
|
|
@@ -1200,6 +1328,8 @@ export const DecimalConstantAttribute: {
|
|
|
1200
1328
|
export type DecimalConstantAttribute = DecimalConstantAttribute$instance;
|
|
1201
1329
|
|
|
1202
1330
|
export interface DefaultDependencyAttribute$instance extends Attribute {
|
|
1331
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DefaultDependencyAttribute: never;
|
|
1332
|
+
|
|
1203
1333
|
readonly LoadHint: LoadHint;
|
|
1204
1334
|
}
|
|
1205
1335
|
|
|
@@ -1212,6 +1342,8 @@ export const DefaultDependencyAttribute: {
|
|
|
1212
1342
|
export type DefaultDependencyAttribute = DefaultDependencyAttribute$instance;
|
|
1213
1343
|
|
|
1214
1344
|
export interface DependencyAttribute$instance extends Attribute {
|
|
1345
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DependencyAttribute: never;
|
|
1346
|
+
|
|
1215
1347
|
readonly DependentAssembly: string;
|
|
1216
1348
|
readonly LoadHint: LoadHint;
|
|
1217
1349
|
}
|
|
@@ -1225,6 +1357,8 @@ export const DependencyAttribute: {
|
|
|
1225
1357
|
export type DependencyAttribute = DependencyAttribute$instance;
|
|
1226
1358
|
|
|
1227
1359
|
export interface DisablePrivateReflectionAttribute$instance extends Attribute {
|
|
1360
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DisablePrivateReflectionAttribute: never;
|
|
1361
|
+
|
|
1228
1362
|
}
|
|
1229
1363
|
|
|
1230
1364
|
|
|
@@ -1236,6 +1370,8 @@ export const DisablePrivateReflectionAttribute: {
|
|
|
1236
1370
|
export type DisablePrivateReflectionAttribute = DisablePrivateReflectionAttribute$instance;
|
|
1237
1371
|
|
|
1238
1372
|
export interface DisableRuntimeMarshallingAttribute$instance extends Attribute {
|
|
1373
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DisableRuntimeMarshallingAttribute: never;
|
|
1374
|
+
|
|
1239
1375
|
}
|
|
1240
1376
|
|
|
1241
1377
|
|
|
@@ -1247,6 +1383,8 @@ export const DisableRuntimeMarshallingAttribute: {
|
|
|
1247
1383
|
export type DisableRuntimeMarshallingAttribute = DisableRuntimeMarshallingAttribute$instance;
|
|
1248
1384
|
|
|
1249
1385
|
export interface DiscardableAttribute$instance extends Attribute {
|
|
1386
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DiscardableAttribute: never;
|
|
1387
|
+
|
|
1250
1388
|
}
|
|
1251
1389
|
|
|
1252
1390
|
|
|
@@ -1258,6 +1396,8 @@ export const DiscardableAttribute: {
|
|
|
1258
1396
|
export type DiscardableAttribute = DiscardableAttribute$instance;
|
|
1259
1397
|
|
|
1260
1398
|
export interface DynamicAttribute$instance extends Attribute {
|
|
1399
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_DynamicAttribute: never;
|
|
1400
|
+
|
|
1261
1401
|
readonly TransformFlags: IList_1<System_Internal.Boolean>;
|
|
1262
1402
|
}
|
|
1263
1403
|
|
|
@@ -1271,6 +1411,8 @@ export const DynamicAttribute: {
|
|
|
1271
1411
|
export type DynamicAttribute = DynamicAttribute$instance;
|
|
1272
1412
|
|
|
1273
1413
|
export interface EnumeratorCancellationAttribute$instance extends Attribute {
|
|
1414
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_EnumeratorCancellationAttribute: never;
|
|
1415
|
+
|
|
1274
1416
|
}
|
|
1275
1417
|
|
|
1276
1418
|
|
|
@@ -1282,6 +1424,8 @@ export const EnumeratorCancellationAttribute: {
|
|
|
1282
1424
|
export type EnumeratorCancellationAttribute = EnumeratorCancellationAttribute$instance;
|
|
1283
1425
|
|
|
1284
1426
|
export interface ExtensionAttribute$instance extends Attribute {
|
|
1427
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ExtensionAttribute: never;
|
|
1428
|
+
|
|
1285
1429
|
}
|
|
1286
1430
|
|
|
1287
1431
|
|
|
@@ -1293,6 +1437,8 @@ export const ExtensionAttribute: {
|
|
|
1293
1437
|
export type ExtensionAttribute = ExtensionAttribute$instance;
|
|
1294
1438
|
|
|
1295
1439
|
export interface ExtensionMarkerAttribute$instance extends Attribute {
|
|
1440
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ExtensionMarkerAttribute: never;
|
|
1441
|
+
|
|
1296
1442
|
readonly Name: string;
|
|
1297
1443
|
}
|
|
1298
1444
|
|
|
@@ -1305,6 +1451,8 @@ export const ExtensionMarkerAttribute: {
|
|
|
1305
1451
|
export type ExtensionMarkerAttribute = ExtensionMarkerAttribute$instance;
|
|
1306
1452
|
|
|
1307
1453
|
export interface FixedAddressValueTypeAttribute$instance extends Attribute {
|
|
1454
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_FixedAddressValueTypeAttribute: never;
|
|
1455
|
+
|
|
1308
1456
|
}
|
|
1309
1457
|
|
|
1310
1458
|
|
|
@@ -1316,6 +1464,8 @@ export const FixedAddressValueTypeAttribute: {
|
|
|
1316
1464
|
export type FixedAddressValueTypeAttribute = FixedAddressValueTypeAttribute$instance;
|
|
1317
1465
|
|
|
1318
1466
|
export interface FixedBufferAttribute$instance extends Attribute {
|
|
1467
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_FixedBufferAttribute: never;
|
|
1468
|
+
|
|
1319
1469
|
readonly ElementType: Type;
|
|
1320
1470
|
readonly Length: int;
|
|
1321
1471
|
}
|
|
@@ -1329,6 +1479,8 @@ export const FixedBufferAttribute: {
|
|
|
1329
1479
|
export type FixedBufferAttribute = FixedBufferAttribute$instance;
|
|
1330
1480
|
|
|
1331
1481
|
export interface HasCopySemanticsAttribute$instance extends Attribute {
|
|
1482
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_HasCopySemanticsAttribute: never;
|
|
1483
|
+
|
|
1332
1484
|
}
|
|
1333
1485
|
|
|
1334
1486
|
|
|
@@ -1340,6 +1492,8 @@ export const HasCopySemanticsAttribute: {
|
|
|
1340
1492
|
export type HasCopySemanticsAttribute = HasCopySemanticsAttribute$instance;
|
|
1341
1493
|
|
|
1342
1494
|
export interface IDispatchConstantAttribute$instance extends CustomConstantAttribute {
|
|
1495
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_IDispatchConstantAttribute: never;
|
|
1496
|
+
|
|
1343
1497
|
readonly Value: unknown | unknown | undefined;
|
|
1344
1498
|
}
|
|
1345
1499
|
|
|
@@ -1352,6 +1506,8 @@ export const IDispatchConstantAttribute: {
|
|
|
1352
1506
|
export type IDispatchConstantAttribute = IDispatchConstantAttribute$instance;
|
|
1353
1507
|
|
|
1354
1508
|
export interface IndexerNameAttribute$instance extends Attribute {
|
|
1509
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_IndexerNameAttribute: never;
|
|
1510
|
+
|
|
1355
1511
|
}
|
|
1356
1512
|
|
|
1357
1513
|
|
|
@@ -1363,6 +1519,8 @@ export const IndexerNameAttribute: {
|
|
|
1363
1519
|
export type IndexerNameAttribute = IndexerNameAttribute$instance;
|
|
1364
1520
|
|
|
1365
1521
|
export interface InlineArrayAttribute$instance extends Attribute {
|
|
1522
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InlineArrayAttribute: never;
|
|
1523
|
+
|
|
1366
1524
|
readonly Length: int;
|
|
1367
1525
|
}
|
|
1368
1526
|
|
|
@@ -1375,6 +1533,8 @@ export const InlineArrayAttribute: {
|
|
|
1375
1533
|
export type InlineArrayAttribute = InlineArrayAttribute$instance;
|
|
1376
1534
|
|
|
1377
1535
|
export interface InternalsVisibleToAttribute$instance extends Attribute {
|
|
1536
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InternalsVisibleToAttribute: never;
|
|
1537
|
+
|
|
1378
1538
|
AllInternalsVisible: boolean;
|
|
1379
1539
|
readonly AssemblyName: string;
|
|
1380
1540
|
}
|
|
@@ -1388,6 +1548,8 @@ export const InternalsVisibleToAttribute: {
|
|
|
1388
1548
|
export type InternalsVisibleToAttribute = InternalsVisibleToAttribute$instance;
|
|
1389
1549
|
|
|
1390
1550
|
export interface InterpolatedStringHandlerArgumentAttribute$instance extends Attribute {
|
|
1551
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InterpolatedStringHandlerArgumentAttribute: never;
|
|
1552
|
+
|
|
1391
1553
|
readonly Arguments: string[];
|
|
1392
1554
|
}
|
|
1393
1555
|
|
|
@@ -1401,6 +1563,8 @@ export const InterpolatedStringHandlerArgumentAttribute: {
|
|
|
1401
1563
|
export type InterpolatedStringHandlerArgumentAttribute = InterpolatedStringHandlerArgumentAttribute$instance;
|
|
1402
1564
|
|
|
1403
1565
|
export interface InterpolatedStringHandlerAttribute$instance extends Attribute {
|
|
1566
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_InterpolatedStringHandlerAttribute: never;
|
|
1567
|
+
|
|
1404
1568
|
}
|
|
1405
1569
|
|
|
1406
1570
|
|
|
@@ -1412,6 +1576,8 @@ export const InterpolatedStringHandlerAttribute: {
|
|
|
1412
1576
|
export type InterpolatedStringHandlerAttribute = InterpolatedStringHandlerAttribute$instance;
|
|
1413
1577
|
|
|
1414
1578
|
export interface IsByRefLikeAttribute$instance extends Attribute {
|
|
1579
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_IsByRefLikeAttribute: never;
|
|
1580
|
+
|
|
1415
1581
|
}
|
|
1416
1582
|
|
|
1417
1583
|
|
|
@@ -1423,6 +1589,8 @@ export const IsByRefLikeAttribute: {
|
|
|
1423
1589
|
export type IsByRefLikeAttribute = IsByRefLikeAttribute$instance;
|
|
1424
1590
|
|
|
1425
1591
|
export interface IsReadOnlyAttribute$instance extends Attribute {
|
|
1592
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_IsReadOnlyAttribute: never;
|
|
1593
|
+
|
|
1426
1594
|
}
|
|
1427
1595
|
|
|
1428
1596
|
|
|
@@ -1434,6 +1602,8 @@ export const IsReadOnlyAttribute: {
|
|
|
1434
1602
|
export type IsReadOnlyAttribute = IsReadOnlyAttribute$instance;
|
|
1435
1603
|
|
|
1436
1604
|
export interface IsUnmanagedAttribute$instance extends Attribute {
|
|
1605
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_IsUnmanagedAttribute: never;
|
|
1606
|
+
|
|
1437
1607
|
}
|
|
1438
1608
|
|
|
1439
1609
|
|
|
@@ -1445,6 +1615,8 @@ export const IsUnmanagedAttribute: {
|
|
|
1445
1615
|
export type IsUnmanagedAttribute = IsUnmanagedAttribute$instance;
|
|
1446
1616
|
|
|
1447
1617
|
export interface IteratorStateMachineAttribute$instance extends StateMachineAttribute {
|
|
1618
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_IteratorStateMachineAttribute: never;
|
|
1619
|
+
|
|
1448
1620
|
}
|
|
1449
1621
|
|
|
1450
1622
|
|
|
@@ -1456,6 +1628,8 @@ export const IteratorStateMachineAttribute: {
|
|
|
1456
1628
|
export type IteratorStateMachineAttribute = IteratorStateMachineAttribute$instance;
|
|
1457
1629
|
|
|
1458
1630
|
export interface IUnknownConstantAttribute$instance extends CustomConstantAttribute {
|
|
1631
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_IUnknownConstantAttribute: never;
|
|
1632
|
+
|
|
1459
1633
|
readonly Value: unknown | unknown | undefined;
|
|
1460
1634
|
}
|
|
1461
1635
|
|
|
@@ -1468,6 +1642,8 @@ export const IUnknownConstantAttribute: {
|
|
|
1468
1642
|
export type IUnknownConstantAttribute = IUnknownConstantAttribute$instance;
|
|
1469
1643
|
|
|
1470
1644
|
export interface MetadataUpdateDeletedAttribute$instance extends Attribute {
|
|
1645
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_MetadataUpdateDeletedAttribute: never;
|
|
1646
|
+
|
|
1471
1647
|
}
|
|
1472
1648
|
|
|
1473
1649
|
|
|
@@ -1479,6 +1655,8 @@ export const MetadataUpdateDeletedAttribute: {
|
|
|
1479
1655
|
export type MetadataUpdateDeletedAttribute = MetadataUpdateDeletedAttribute$instance;
|
|
1480
1656
|
|
|
1481
1657
|
export interface MetadataUpdateOriginalTypeAttribute$instance extends Attribute {
|
|
1658
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_MetadataUpdateOriginalTypeAttribute: never;
|
|
1659
|
+
|
|
1482
1660
|
readonly OriginalType: Type;
|
|
1483
1661
|
}
|
|
1484
1662
|
|
|
@@ -1491,6 +1669,8 @@ export const MetadataUpdateOriginalTypeAttribute: {
|
|
|
1491
1669
|
export type MetadataUpdateOriginalTypeAttribute = MetadataUpdateOriginalTypeAttribute$instance;
|
|
1492
1670
|
|
|
1493
1671
|
export interface MethodImplAttribute$instance extends Attribute {
|
|
1672
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_MethodImplAttribute: never;
|
|
1673
|
+
|
|
1494
1674
|
MethodCodeType: MethodCodeType;
|
|
1495
1675
|
readonly Value: MethodImplOptions;
|
|
1496
1676
|
}
|
|
@@ -1506,6 +1686,8 @@ export const MethodImplAttribute: {
|
|
|
1506
1686
|
export type MethodImplAttribute = MethodImplAttribute$instance;
|
|
1507
1687
|
|
|
1508
1688
|
export interface ModuleInitializerAttribute$instance extends Attribute {
|
|
1689
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ModuleInitializerAttribute: never;
|
|
1690
|
+
|
|
1509
1691
|
}
|
|
1510
1692
|
|
|
1511
1693
|
|
|
@@ -1517,6 +1699,8 @@ export const ModuleInitializerAttribute: {
|
|
|
1517
1699
|
export type ModuleInitializerAttribute = ModuleInitializerAttribute$instance;
|
|
1518
1700
|
|
|
1519
1701
|
export interface NativeCppClassAttribute$instance extends Attribute {
|
|
1702
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_NativeCppClassAttribute: never;
|
|
1703
|
+
|
|
1520
1704
|
}
|
|
1521
1705
|
|
|
1522
1706
|
|
|
@@ -1528,6 +1712,8 @@ export const NativeCppClassAttribute: {
|
|
|
1528
1712
|
export type NativeCppClassAttribute = NativeCppClassAttribute$instance;
|
|
1529
1713
|
|
|
1530
1714
|
export interface NullableAttribute$instance extends Attribute {
|
|
1715
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_NullableAttribute: never;
|
|
1716
|
+
|
|
1531
1717
|
readonly NullableFlags: byte[];
|
|
1532
1718
|
}
|
|
1533
1719
|
|
|
@@ -1541,6 +1727,8 @@ export const NullableAttribute: {
|
|
|
1541
1727
|
export type NullableAttribute = NullableAttribute$instance;
|
|
1542
1728
|
|
|
1543
1729
|
export interface NullableContextAttribute$instance extends Attribute {
|
|
1730
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_NullableContextAttribute: never;
|
|
1731
|
+
|
|
1544
1732
|
readonly Flag: byte;
|
|
1545
1733
|
}
|
|
1546
1734
|
|
|
@@ -1553,6 +1741,8 @@ export const NullableContextAttribute: {
|
|
|
1553
1741
|
export type NullableContextAttribute = NullableContextAttribute$instance;
|
|
1554
1742
|
|
|
1555
1743
|
export interface NullablePublicOnlyAttribute$instance extends Attribute {
|
|
1744
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_NullablePublicOnlyAttribute: never;
|
|
1745
|
+
|
|
1556
1746
|
readonly IncludesInternals: boolean;
|
|
1557
1747
|
}
|
|
1558
1748
|
|
|
@@ -1565,6 +1755,8 @@ export const NullablePublicOnlyAttribute: {
|
|
|
1565
1755
|
export type NullablePublicOnlyAttribute = NullablePublicOnlyAttribute$instance;
|
|
1566
1756
|
|
|
1567
1757
|
export interface OverloadResolutionPriorityAttribute$instance extends Attribute {
|
|
1758
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_OverloadResolutionPriorityAttribute: never;
|
|
1759
|
+
|
|
1568
1760
|
readonly Priority: int;
|
|
1569
1761
|
}
|
|
1570
1762
|
|
|
@@ -1577,6 +1769,8 @@ export const OverloadResolutionPriorityAttribute: {
|
|
|
1577
1769
|
export type OverloadResolutionPriorityAttribute = OverloadResolutionPriorityAttribute$instance;
|
|
1578
1770
|
|
|
1579
1771
|
export interface ParamCollectionAttribute$instance extends Attribute {
|
|
1772
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ParamCollectionAttribute: never;
|
|
1773
|
+
|
|
1580
1774
|
}
|
|
1581
1775
|
|
|
1582
1776
|
|
|
@@ -1588,6 +1782,8 @@ export const ParamCollectionAttribute: {
|
|
|
1588
1782
|
export type ParamCollectionAttribute = ParamCollectionAttribute$instance;
|
|
1589
1783
|
|
|
1590
1784
|
export interface PreserveBaseOverridesAttribute$instance extends Attribute {
|
|
1785
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_PreserveBaseOverridesAttribute: never;
|
|
1786
|
+
|
|
1591
1787
|
}
|
|
1592
1788
|
|
|
1593
1789
|
|
|
@@ -1599,6 +1795,8 @@ export const PreserveBaseOverridesAttribute: {
|
|
|
1599
1795
|
export type PreserveBaseOverridesAttribute = PreserveBaseOverridesAttribute$instance;
|
|
1600
1796
|
|
|
1601
1797
|
export interface ReadOnlyCollectionBuilder_1$instance<T> {
|
|
1798
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ReadOnlyCollectionBuilder_1: never;
|
|
1799
|
+
|
|
1602
1800
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1603
1801
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1604
1802
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -1645,6 +1843,8 @@ export type ReadOnlyCollectionBuilder_1<T> = ReadOnlyCollectionBuilder_1$instanc
|
|
|
1645
1843
|
|
|
1646
1844
|
|
|
1647
1845
|
export interface ReferenceAssemblyAttribute$instance extends Attribute {
|
|
1846
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ReferenceAssemblyAttribute: never;
|
|
1847
|
+
|
|
1648
1848
|
readonly Description: string | undefined;
|
|
1649
1849
|
}
|
|
1650
1850
|
|
|
@@ -1658,6 +1858,8 @@ export const ReferenceAssemblyAttribute: {
|
|
|
1658
1858
|
export type ReferenceAssemblyAttribute = ReferenceAssemblyAttribute$instance;
|
|
1659
1859
|
|
|
1660
1860
|
export interface RefSafetyRulesAttribute$instance extends Attribute {
|
|
1861
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_RefSafetyRulesAttribute: never;
|
|
1862
|
+
|
|
1661
1863
|
readonly Version: int;
|
|
1662
1864
|
}
|
|
1663
1865
|
|
|
@@ -1670,6 +1872,8 @@ export const RefSafetyRulesAttribute: {
|
|
|
1670
1872
|
export type RefSafetyRulesAttribute = RefSafetyRulesAttribute$instance;
|
|
1671
1873
|
|
|
1672
1874
|
export interface RequiredAttributeAttribute$instance extends Attribute {
|
|
1875
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_RequiredAttributeAttribute: never;
|
|
1876
|
+
|
|
1673
1877
|
readonly RequiredContract: Type;
|
|
1674
1878
|
}
|
|
1675
1879
|
|
|
@@ -1682,6 +1886,8 @@ export const RequiredAttributeAttribute: {
|
|
|
1682
1886
|
export type RequiredAttributeAttribute = RequiredAttributeAttribute$instance;
|
|
1683
1887
|
|
|
1684
1888
|
export interface RequiredMemberAttribute$instance extends Attribute {
|
|
1889
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_RequiredMemberAttribute: never;
|
|
1890
|
+
|
|
1685
1891
|
}
|
|
1686
1892
|
|
|
1687
1893
|
|
|
@@ -1693,6 +1899,8 @@ export const RequiredMemberAttribute: {
|
|
|
1693
1899
|
export type RequiredMemberAttribute = RequiredMemberAttribute$instance;
|
|
1694
1900
|
|
|
1695
1901
|
export interface RequiresLocationAttribute$instance extends Attribute {
|
|
1902
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_RequiresLocationAttribute: never;
|
|
1903
|
+
|
|
1696
1904
|
}
|
|
1697
1905
|
|
|
1698
1906
|
|
|
@@ -1704,6 +1912,8 @@ export const RequiresLocationAttribute: {
|
|
|
1704
1912
|
export type RequiresLocationAttribute = RequiresLocationAttribute$instance;
|
|
1705
1913
|
|
|
1706
1914
|
export interface RuleCache_1$instance<T> {
|
|
1915
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_RuleCache_1: never;
|
|
1916
|
+
|
|
1707
1917
|
}
|
|
1708
1918
|
|
|
1709
1919
|
|
|
@@ -1714,6 +1924,8 @@ export const RuleCache_1: {
|
|
|
1714
1924
|
export type RuleCache_1<T> = RuleCache_1$instance<T>;
|
|
1715
1925
|
|
|
1716
1926
|
export interface RuntimeCompatibilityAttribute$instance extends Attribute {
|
|
1927
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_RuntimeCompatibilityAttribute: never;
|
|
1928
|
+
|
|
1717
1929
|
WrapNonExceptionThrows: boolean;
|
|
1718
1930
|
}
|
|
1719
1931
|
|
|
@@ -1726,6 +1938,8 @@ export const RuntimeCompatibilityAttribute: {
|
|
|
1726
1938
|
export type RuntimeCompatibilityAttribute = RuntimeCompatibilityAttribute$instance;
|
|
1727
1939
|
|
|
1728
1940
|
export interface RuntimeWrappedException$instance extends Exception {
|
|
1941
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_RuntimeWrappedException: never;
|
|
1942
|
+
|
|
1729
1943
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1730
1944
|
|
|
1731
1945
|
readonly WrappedException: unknown;
|
|
@@ -1746,6 +1960,8 @@ export type RuntimeWrappedException = RuntimeWrappedException$instance & __Runti
|
|
|
1746
1960
|
|
|
1747
1961
|
|
|
1748
1962
|
export interface ScopedRefAttribute$instance extends Attribute {
|
|
1963
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ScopedRefAttribute: never;
|
|
1964
|
+
|
|
1749
1965
|
}
|
|
1750
1966
|
|
|
1751
1967
|
|
|
@@ -1757,6 +1973,8 @@ export const ScopedRefAttribute: {
|
|
|
1757
1973
|
export type ScopedRefAttribute = ScopedRefAttribute$instance;
|
|
1758
1974
|
|
|
1759
1975
|
export interface ScopelessEnumAttribute$instance extends Attribute {
|
|
1976
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_ScopelessEnumAttribute: never;
|
|
1977
|
+
|
|
1760
1978
|
}
|
|
1761
1979
|
|
|
1762
1980
|
|
|
@@ -1768,6 +1986,8 @@ export const ScopelessEnumAttribute: {
|
|
|
1768
1986
|
export type ScopelessEnumAttribute = ScopelessEnumAttribute$instance;
|
|
1769
1987
|
|
|
1770
1988
|
export interface SkipLocalsInitAttribute$instance extends Attribute {
|
|
1989
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_SkipLocalsInitAttribute: never;
|
|
1990
|
+
|
|
1771
1991
|
}
|
|
1772
1992
|
|
|
1773
1993
|
|
|
@@ -1779,6 +1999,8 @@ export const SkipLocalsInitAttribute: {
|
|
|
1779
1999
|
export type SkipLocalsInitAttribute = SkipLocalsInitAttribute$instance;
|
|
1780
2000
|
|
|
1781
2001
|
export interface SpecialNameAttribute$instance extends Attribute {
|
|
2002
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_SpecialNameAttribute: never;
|
|
2003
|
+
|
|
1782
2004
|
}
|
|
1783
2005
|
|
|
1784
2006
|
|
|
@@ -1790,6 +2012,8 @@ export const SpecialNameAttribute: {
|
|
|
1790
2012
|
export type SpecialNameAttribute = SpecialNameAttribute$instance;
|
|
1791
2013
|
|
|
1792
2014
|
export interface StateMachineAttribute$instance extends Attribute {
|
|
2015
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_StateMachineAttribute: never;
|
|
2016
|
+
|
|
1793
2017
|
readonly StateMachineType: Type;
|
|
1794
2018
|
}
|
|
1795
2019
|
|
|
@@ -1802,6 +2026,8 @@ export const StateMachineAttribute: {
|
|
|
1802
2026
|
export type StateMachineAttribute = StateMachineAttribute$instance;
|
|
1803
2027
|
|
|
1804
2028
|
export interface StringFreezingAttribute$instance extends Attribute {
|
|
2029
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_StringFreezingAttribute: never;
|
|
2030
|
+
|
|
1805
2031
|
}
|
|
1806
2032
|
|
|
1807
2033
|
|
|
@@ -1812,7 +2038,9 @@ export const StringFreezingAttribute: {
|
|
|
1812
2038
|
|
|
1813
2039
|
export type StringFreezingAttribute = StringFreezingAttribute$instance;
|
|
1814
2040
|
|
|
1815
|
-
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
|
+
|
|
1816
2044
|
readonly __tsonic_iface_System_Runtime_CompilerServices_IStrongBox: never;
|
|
1817
2045
|
|
|
1818
2046
|
Value: T;
|
|
@@ -1829,12 +2057,12 @@ export interface __StrongBox_1$views<T> {
|
|
|
1829
2057
|
As_IStrongBox(): IStrongBox$instance;
|
|
1830
2058
|
}
|
|
1831
2059
|
|
|
1832
|
-
export interface StrongBox_1$instance<T> extends IStrongBox$instance {}
|
|
1833
|
-
|
|
1834
2060
|
export type StrongBox_1<T> = StrongBox_1$instance<T> & __StrongBox_1$views<T>;
|
|
1835
2061
|
|
|
1836
2062
|
|
|
1837
2063
|
export interface SuppressIldasmAttribute$instance extends Attribute {
|
|
2064
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_SuppressIldasmAttribute: never;
|
|
2065
|
+
|
|
1838
2066
|
}
|
|
1839
2067
|
|
|
1840
2068
|
|
|
@@ -1846,6 +2074,8 @@ export const SuppressIldasmAttribute: {
|
|
|
1846
2074
|
export type SuppressIldasmAttribute = SuppressIldasmAttribute$instance;
|
|
1847
2075
|
|
|
1848
2076
|
export interface SwitchExpressionException$instance extends InvalidOperationException {
|
|
2077
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_SwitchExpressionException: never;
|
|
2078
|
+
|
|
1849
2079
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1850
2080
|
|
|
1851
2081
|
readonly Message: string;
|
|
@@ -1871,6 +2101,8 @@ export type SwitchExpressionException = SwitchExpressionException$instance & __S
|
|
|
1871
2101
|
|
|
1872
2102
|
|
|
1873
2103
|
export interface TupleElementNamesAttribute$instance extends Attribute {
|
|
2104
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_TupleElementNamesAttribute: never;
|
|
2105
|
+
|
|
1874
2106
|
readonly TransformNames: IList_1<string | undefined>;
|
|
1875
2107
|
}
|
|
1876
2108
|
|
|
@@ -1883,6 +2115,8 @@ export const TupleElementNamesAttribute: {
|
|
|
1883
2115
|
export type TupleElementNamesAttribute = TupleElementNamesAttribute$instance;
|
|
1884
2116
|
|
|
1885
2117
|
export interface TypeForwardedFromAttribute$instance extends Attribute {
|
|
2118
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_TypeForwardedFromAttribute: never;
|
|
2119
|
+
|
|
1886
2120
|
readonly AssemblyFullName: string;
|
|
1887
2121
|
}
|
|
1888
2122
|
|
|
@@ -1895,6 +2129,8 @@ export const TypeForwardedFromAttribute: {
|
|
|
1895
2129
|
export type TypeForwardedFromAttribute = TypeForwardedFromAttribute$instance;
|
|
1896
2130
|
|
|
1897
2131
|
export interface TypeForwardedToAttribute$instance extends Attribute {
|
|
2132
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_TypeForwardedToAttribute: never;
|
|
2133
|
+
|
|
1898
2134
|
readonly Destination: Type;
|
|
1899
2135
|
}
|
|
1900
2136
|
|
|
@@ -1907,6 +2143,8 @@ export const TypeForwardedToAttribute: {
|
|
|
1907
2143
|
export type TypeForwardedToAttribute = TypeForwardedToAttribute$instance;
|
|
1908
2144
|
|
|
1909
2145
|
export interface UnsafeAccessorAttribute$instance extends Attribute {
|
|
2146
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_UnsafeAccessorAttribute: never;
|
|
2147
|
+
|
|
1910
2148
|
readonly Kind: UnsafeAccessorKind;
|
|
1911
2149
|
get Name(): string | undefined;
|
|
1912
2150
|
set Name(value: string | undefined);
|
|
@@ -1921,6 +2159,8 @@ export const UnsafeAccessorAttribute: {
|
|
|
1921
2159
|
export type UnsafeAccessorAttribute = UnsafeAccessorAttribute$instance;
|
|
1922
2160
|
|
|
1923
2161
|
export interface UnsafeAccessorTypeAttribute$instance extends Attribute {
|
|
2162
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_UnsafeAccessorTypeAttribute: never;
|
|
2163
|
+
|
|
1924
2164
|
readonly TypeName: string;
|
|
1925
2165
|
}
|
|
1926
2166
|
|
|
@@ -1933,6 +2173,8 @@ export const UnsafeAccessorTypeAttribute: {
|
|
|
1933
2173
|
export type UnsafeAccessorTypeAttribute = UnsafeAccessorTypeAttribute$instance;
|
|
1934
2174
|
|
|
1935
2175
|
export interface UnsafeValueTypeAttribute$instance extends Attribute {
|
|
2176
|
+
readonly __tsonic_type_System_Runtime_CompilerServices_UnsafeValueTypeAttribute: never;
|
|
2177
|
+
|
|
1936
2178
|
}
|
|
1937
2179
|
|
|
1938
2180
|
|