@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
|
@@ -119,6 +119,8 @@ export interface IJsonOnSerializing$instance {
|
|
|
119
119
|
export type IJsonOnSerializing = IJsonOnSerializing$instance;
|
|
120
120
|
|
|
121
121
|
export interface JsonAttribute$instance extends Attribute {
|
|
122
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonAttribute: never;
|
|
123
|
+
|
|
122
124
|
}
|
|
123
125
|
|
|
124
126
|
|
|
@@ -129,6 +131,8 @@ export const JsonAttribute: (abstract new() => JsonAttribute) & {
|
|
|
129
131
|
export type JsonAttribute = JsonAttribute$instance;
|
|
130
132
|
|
|
131
133
|
export interface JsonConstructorAttribute$instance extends JsonAttribute {
|
|
134
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonConstructorAttribute: never;
|
|
135
|
+
|
|
132
136
|
}
|
|
133
137
|
|
|
134
138
|
|
|
@@ -140,6 +144,8 @@ export const JsonConstructorAttribute: {
|
|
|
140
144
|
export type JsonConstructorAttribute = JsonConstructorAttribute$instance;
|
|
141
145
|
|
|
142
146
|
export interface JsonConverter$instance {
|
|
147
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonConverter: never;
|
|
148
|
+
|
|
143
149
|
readonly Type: Type | Type | undefined;
|
|
144
150
|
CanConvert(typeToConvert: Type): boolean;
|
|
145
151
|
}
|
|
@@ -152,6 +158,8 @@ export const JsonConverter: {
|
|
|
152
158
|
export type JsonConverter = JsonConverter$instance;
|
|
153
159
|
|
|
154
160
|
export interface JsonConverter_1$instance<T> extends JsonConverter {
|
|
161
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonConverter_1: never;
|
|
162
|
+
|
|
155
163
|
readonly HandleNull: boolean;
|
|
156
164
|
readonly Type: Type | Type | undefined;
|
|
157
165
|
CanConvert(typeToConvert: Type): boolean;
|
|
@@ -169,6 +177,8 @@ export const JsonConverter_1: (abstract new<T>() => JsonConverter_1<T>) & {
|
|
|
169
177
|
export type JsonConverter_1<T> = JsonConverter_1$instance<T>;
|
|
170
178
|
|
|
171
179
|
export interface JsonConverterAttribute$instance extends JsonAttribute {
|
|
180
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonConverterAttribute: never;
|
|
181
|
+
|
|
172
182
|
readonly ConverterType: Type | undefined;
|
|
173
183
|
CreateConverter(typeToConvert: Type): JsonConverter | undefined;
|
|
174
184
|
}
|
|
@@ -182,6 +192,8 @@ export const JsonConverterAttribute: {
|
|
|
182
192
|
export type JsonConverterAttribute = JsonConverterAttribute$instance;
|
|
183
193
|
|
|
184
194
|
export interface JsonConverterFactory$instance extends JsonConverter {
|
|
195
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonConverterFactory: never;
|
|
196
|
+
|
|
185
197
|
readonly Type: Type | undefined;
|
|
186
198
|
CreateConverter(typeToConvert: Type, options: JsonSerializerOptions): JsonConverter | undefined;
|
|
187
199
|
}
|
|
@@ -194,6 +206,8 @@ export const JsonConverterFactory: (abstract new() => JsonConverterFactory) & {
|
|
|
194
206
|
export type JsonConverterFactory = JsonConverterFactory$instance;
|
|
195
207
|
|
|
196
208
|
export interface JsonDerivedTypeAttribute$instance extends JsonAttribute {
|
|
209
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonDerivedTypeAttribute: never;
|
|
210
|
+
|
|
197
211
|
readonly DerivedType: Type;
|
|
198
212
|
readonly TypeDiscriminator: unknown | undefined;
|
|
199
213
|
}
|
|
@@ -209,6 +223,8 @@ export const JsonDerivedTypeAttribute: {
|
|
|
209
223
|
export type JsonDerivedTypeAttribute = JsonDerivedTypeAttribute$instance;
|
|
210
224
|
|
|
211
225
|
export interface JsonExtensionDataAttribute$instance extends JsonAttribute {
|
|
226
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonExtensionDataAttribute: never;
|
|
227
|
+
|
|
212
228
|
}
|
|
213
229
|
|
|
214
230
|
|
|
@@ -220,6 +236,8 @@ export const JsonExtensionDataAttribute: {
|
|
|
220
236
|
export type JsonExtensionDataAttribute = JsonExtensionDataAttribute$instance;
|
|
221
237
|
|
|
222
238
|
export interface JsonIgnoreAttribute$instance extends JsonAttribute {
|
|
239
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonIgnoreAttribute: never;
|
|
240
|
+
|
|
223
241
|
Condition: JsonIgnoreCondition;
|
|
224
242
|
}
|
|
225
243
|
|
|
@@ -232,6 +250,8 @@ export const JsonIgnoreAttribute: {
|
|
|
232
250
|
export type JsonIgnoreAttribute = JsonIgnoreAttribute$instance;
|
|
233
251
|
|
|
234
252
|
export interface JsonIncludeAttribute$instance extends JsonAttribute {
|
|
253
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonIncludeAttribute: never;
|
|
254
|
+
|
|
235
255
|
}
|
|
236
256
|
|
|
237
257
|
|
|
@@ -243,6 +263,8 @@ export const JsonIncludeAttribute: {
|
|
|
243
263
|
export type JsonIncludeAttribute = JsonIncludeAttribute$instance;
|
|
244
264
|
|
|
245
265
|
export interface JsonNumberEnumConverter_1$instance<TEnum extends number> extends JsonConverterFactory {
|
|
266
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonNumberEnumConverter_1: never;
|
|
267
|
+
|
|
246
268
|
CanConvert(typeToConvert: Type): boolean;
|
|
247
269
|
CreateConverter(typeToConvert: Type, options: JsonSerializerOptions): JsonConverter | undefined;
|
|
248
270
|
}
|
|
@@ -256,6 +278,8 @@ export const JsonNumberEnumConverter_1: {
|
|
|
256
278
|
export type JsonNumberEnumConverter_1<TEnum extends number> = JsonNumberEnumConverter_1$instance<TEnum>;
|
|
257
279
|
|
|
258
280
|
export interface JsonNumberHandlingAttribute$instance extends JsonAttribute {
|
|
281
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonNumberHandlingAttribute: never;
|
|
282
|
+
|
|
259
283
|
readonly Handling: JsonNumberHandling;
|
|
260
284
|
}
|
|
261
285
|
|
|
@@ -268,6 +292,8 @@ export const JsonNumberHandlingAttribute: {
|
|
|
268
292
|
export type JsonNumberHandlingAttribute = JsonNumberHandlingAttribute$instance;
|
|
269
293
|
|
|
270
294
|
export interface JsonObjectCreationHandlingAttribute$instance extends JsonAttribute {
|
|
295
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonObjectCreationHandlingAttribute: never;
|
|
296
|
+
|
|
271
297
|
readonly Handling: JsonObjectCreationHandling;
|
|
272
298
|
}
|
|
273
299
|
|
|
@@ -280,6 +306,8 @@ export const JsonObjectCreationHandlingAttribute: {
|
|
|
280
306
|
export type JsonObjectCreationHandlingAttribute = JsonObjectCreationHandlingAttribute$instance;
|
|
281
307
|
|
|
282
308
|
export interface JsonPolymorphicAttribute$instance extends JsonAttribute {
|
|
309
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonPolymorphicAttribute: never;
|
|
310
|
+
|
|
283
311
|
IgnoreUnrecognizedTypeDiscriminators: boolean;
|
|
284
312
|
get TypeDiscriminatorPropertyName(): string | undefined;
|
|
285
313
|
set TypeDiscriminatorPropertyName(value: string | undefined);
|
|
@@ -295,6 +323,8 @@ export const JsonPolymorphicAttribute: {
|
|
|
295
323
|
export type JsonPolymorphicAttribute = JsonPolymorphicAttribute$instance;
|
|
296
324
|
|
|
297
325
|
export interface JsonPropertyNameAttribute$instance extends JsonAttribute {
|
|
326
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonPropertyNameAttribute: never;
|
|
327
|
+
|
|
298
328
|
readonly Name: string;
|
|
299
329
|
}
|
|
300
330
|
|
|
@@ -307,6 +337,8 @@ export const JsonPropertyNameAttribute: {
|
|
|
307
337
|
export type JsonPropertyNameAttribute = JsonPropertyNameAttribute$instance;
|
|
308
338
|
|
|
309
339
|
export interface JsonPropertyOrderAttribute$instance extends JsonAttribute {
|
|
340
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonPropertyOrderAttribute: never;
|
|
341
|
+
|
|
310
342
|
readonly Order: int;
|
|
311
343
|
}
|
|
312
344
|
|
|
@@ -319,6 +351,8 @@ export const JsonPropertyOrderAttribute: {
|
|
|
319
351
|
export type JsonPropertyOrderAttribute = JsonPropertyOrderAttribute$instance;
|
|
320
352
|
|
|
321
353
|
export interface JsonRequiredAttribute$instance extends JsonAttribute {
|
|
354
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonRequiredAttribute: never;
|
|
355
|
+
|
|
322
356
|
}
|
|
323
357
|
|
|
324
358
|
|
|
@@ -330,6 +364,8 @@ export const JsonRequiredAttribute: {
|
|
|
330
364
|
export type JsonRequiredAttribute = JsonRequiredAttribute$instance;
|
|
331
365
|
|
|
332
366
|
export interface JsonSerializableAttribute$instance extends JsonAttribute {
|
|
367
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonSerializableAttribute: never;
|
|
368
|
+
|
|
333
369
|
GenerationMode: JsonSourceGenerationMode;
|
|
334
370
|
get TypeInfoPropertyName(): string | undefined;
|
|
335
371
|
set TypeInfoPropertyName(value: string | undefined);
|
|
@@ -344,6 +380,8 @@ export const JsonSerializableAttribute: {
|
|
|
344
380
|
export type JsonSerializableAttribute = JsonSerializableAttribute$instance;
|
|
345
381
|
|
|
346
382
|
export interface JsonSerializerContext$instance {
|
|
383
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonSerializerContext: never;
|
|
384
|
+
|
|
347
385
|
readonly __tsonic_iface_System_Text_Json_Serialization_Metadata_IJsonTypeInfoResolver: never;
|
|
348
386
|
|
|
349
387
|
readonly GeneratedSerializerOptions: JsonSerializerOptions | undefined;
|
|
@@ -364,6 +402,8 @@ export type JsonSerializerContext = JsonSerializerContext$instance & __JsonSeria
|
|
|
364
402
|
|
|
365
403
|
|
|
366
404
|
export interface JsonSourceGenerationOptionsAttribute$instance extends JsonAttribute {
|
|
405
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonSourceGenerationOptionsAttribute: never;
|
|
406
|
+
|
|
367
407
|
AllowDuplicateProperties: boolean;
|
|
368
408
|
AllowOutOfOrderMetadataProperties: boolean;
|
|
369
409
|
AllowTrailingCommas: boolean;
|
|
@@ -405,6 +445,8 @@ export const JsonSourceGenerationOptionsAttribute: {
|
|
|
405
445
|
export type JsonSourceGenerationOptionsAttribute = JsonSourceGenerationOptionsAttribute$instance;
|
|
406
446
|
|
|
407
447
|
export interface JsonStringEnumConverter$instance extends JsonConverterFactory {
|
|
448
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonStringEnumConverter: never;
|
|
449
|
+
|
|
408
450
|
CanConvert(typeToConvert: Type): boolean;
|
|
409
451
|
CreateConverter(typeToConvert: Type, options: JsonSerializerOptions): JsonConverter;
|
|
410
452
|
}
|
|
@@ -419,6 +461,8 @@ export const JsonStringEnumConverter: {
|
|
|
419
461
|
export type JsonStringEnumConverter = JsonStringEnumConverter$instance;
|
|
420
462
|
|
|
421
463
|
export interface JsonStringEnumConverter_1$instance<TEnum extends number> extends JsonConverterFactory {
|
|
464
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonStringEnumConverter_1: never;
|
|
465
|
+
|
|
422
466
|
CanConvert(typeToConvert: Type): boolean;
|
|
423
467
|
CreateConverter(typeToConvert: Type, options: JsonSerializerOptions): JsonConverter | undefined;
|
|
424
468
|
}
|
|
@@ -433,6 +477,8 @@ export const JsonStringEnumConverter_1: {
|
|
|
433
477
|
export type JsonStringEnumConverter_1<TEnum extends number> = JsonStringEnumConverter_1$instance<TEnum>;
|
|
434
478
|
|
|
435
479
|
export interface JsonStringEnumMemberNameAttribute$instance extends Attribute {
|
|
480
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonStringEnumMemberNameAttribute: never;
|
|
481
|
+
|
|
436
482
|
readonly Name: string;
|
|
437
483
|
}
|
|
438
484
|
|
|
@@ -445,6 +491,8 @@ export const JsonStringEnumMemberNameAttribute: {
|
|
|
445
491
|
export type JsonStringEnumMemberNameAttribute = JsonStringEnumMemberNameAttribute$instance;
|
|
446
492
|
|
|
447
493
|
export interface JsonUnmappedMemberHandlingAttribute$instance extends JsonAttribute {
|
|
494
|
+
readonly __tsonic_type_System_Text_Json_Serialization_JsonUnmappedMemberHandlingAttribute: never;
|
|
495
|
+
|
|
448
496
|
readonly UnmappedMemberHandling: JsonUnmappedMemberHandling;
|
|
449
497
|
}
|
|
450
498
|
|
|
@@ -457,6 +505,8 @@ export const JsonUnmappedMemberHandlingAttribute: {
|
|
|
457
505
|
export type JsonUnmappedMemberHandlingAttribute = JsonUnmappedMemberHandlingAttribute$instance;
|
|
458
506
|
|
|
459
507
|
export interface ReferenceHandler$instance {
|
|
508
|
+
readonly __tsonic_type_System_Text_Json_Serialization_ReferenceHandler: never;
|
|
509
|
+
|
|
460
510
|
CreateResolver(): ReferenceResolver;
|
|
461
511
|
}
|
|
462
512
|
|
|
@@ -470,6 +520,8 @@ export const ReferenceHandler: (abstract new() => ReferenceHandler) & {
|
|
|
470
520
|
export type ReferenceHandler = ReferenceHandler$instance;
|
|
471
521
|
|
|
472
522
|
export interface ReferenceHandler_1$instance<T extends ReferenceResolver> extends ReferenceHandler {
|
|
523
|
+
readonly __tsonic_type_System_Text_Json_Serialization_ReferenceHandler_1: never;
|
|
524
|
+
|
|
473
525
|
CreateResolver(): ReferenceResolver;
|
|
474
526
|
}
|
|
475
527
|
|
|
@@ -482,6 +534,8 @@ export const ReferenceHandler_1: {
|
|
|
482
534
|
export type ReferenceHandler_1<T extends ReferenceResolver> = ReferenceHandler_1$instance<T>;
|
|
483
535
|
|
|
484
536
|
export interface ReferenceResolver$instance {
|
|
537
|
+
readonly __tsonic_type_System_Text_Json_Serialization_ReferenceResolver: never;
|
|
538
|
+
|
|
485
539
|
AddReference(referenceId: string, value: unknown): void;
|
|
486
540
|
GetReference(value: unknown, alreadyExists: boolean): string;
|
|
487
541
|
ResolveReference(referenceId: string): unknown;
|
|
@@ -34,6 +34,8 @@ export interface IJsonTypeInfoResolver$instance {
|
|
|
34
34
|
export type IJsonTypeInfoResolver = IJsonTypeInfoResolver$instance;
|
|
35
35
|
|
|
36
36
|
export interface JsonDerivedType$instance {
|
|
37
|
+
readonly __tsonic_type_System_Text_Json_Serialization_Metadata_JsonDerivedType: never;
|
|
38
|
+
|
|
37
39
|
readonly DerivedType: Type;
|
|
38
40
|
readonly TypeDiscriminator: unknown | undefined;
|
|
39
41
|
}
|
|
@@ -48,7 +50,9 @@ export const JsonDerivedType: {
|
|
|
48
50
|
|
|
49
51
|
export type JsonDerivedType = JsonDerivedType$instance;
|
|
50
52
|
|
|
51
|
-
export interface DefaultJsonTypeInfoResolver$instance {
|
|
53
|
+
export interface DefaultJsonTypeInfoResolver$instance extends IJsonTypeInfoResolver$instance {
|
|
54
|
+
readonly __tsonic_type_System_Text_Json_Serialization_Metadata_DefaultJsonTypeInfoResolver: never;
|
|
55
|
+
|
|
52
56
|
readonly __tsonic_iface_System_Text_Json_Serialization_Metadata_IJsonTypeInfoResolver: never;
|
|
53
57
|
|
|
54
58
|
readonly Modifiers: IList_1<Action_1<JsonTypeInfo>>;
|
|
@@ -65,12 +69,12 @@ export interface __DefaultJsonTypeInfoResolver$views {
|
|
|
65
69
|
As_IJsonTypeInfoResolver(): IJsonTypeInfoResolver$instance;
|
|
66
70
|
}
|
|
67
71
|
|
|
68
|
-
export interface DefaultJsonTypeInfoResolver$instance extends IJsonTypeInfoResolver$instance {}
|
|
69
|
-
|
|
70
72
|
export type DefaultJsonTypeInfoResolver = DefaultJsonTypeInfoResolver$instance & __DefaultJsonTypeInfoResolver$views;
|
|
71
73
|
|
|
72
74
|
|
|
73
75
|
export interface JsonCollectionInfoValues_1$instance<TCollection> {
|
|
76
|
+
readonly __tsonic_type_System_Text_Json_Serialization_Metadata_JsonCollectionInfoValues_1: never;
|
|
77
|
+
|
|
74
78
|
ElementInfo: JsonTypeInfo;
|
|
75
79
|
get KeyInfo(): JsonTypeInfo | undefined;
|
|
76
80
|
set KeyInfo(value: JsonTypeInfo | undefined);
|
|
@@ -90,6 +94,8 @@ export const JsonCollectionInfoValues_1: {
|
|
|
90
94
|
export type JsonCollectionInfoValues_1<TCollection> = JsonCollectionInfoValues_1$instance<TCollection>;
|
|
91
95
|
|
|
92
96
|
export interface JsonObjectInfoValues_1$instance<T> {
|
|
97
|
+
readonly __tsonic_type_System_Text_Json_Serialization_Metadata_JsonObjectInfoValues_1: never;
|
|
98
|
+
|
|
93
99
|
get ConstructorAttributeProviderFactory(): Func_1<ICustomAttributeProvider> | undefined;
|
|
94
100
|
set ConstructorAttributeProviderFactory(value: Func_1<ICustomAttributeProvider> | undefined);
|
|
95
101
|
get ConstructorParameterMetadataInitializer(): Func_1<JsonParameterInfoValues[]> | undefined;
|
|
@@ -114,6 +120,8 @@ export const JsonObjectInfoValues_1: {
|
|
|
114
120
|
export type JsonObjectInfoValues_1<T> = JsonObjectInfoValues_1$instance<T>;
|
|
115
121
|
|
|
116
122
|
export interface JsonParameterInfo$instance {
|
|
123
|
+
readonly __tsonic_type_System_Text_Json_Serialization_Metadata_JsonParameterInfo: never;
|
|
124
|
+
|
|
117
125
|
readonly AttributeProvider: ICustomAttributeProvider | undefined;
|
|
118
126
|
readonly DeclaringType: Type;
|
|
119
127
|
readonly DefaultValue: unknown | undefined;
|
|
@@ -133,6 +141,8 @@ export const JsonParameterInfo: {
|
|
|
133
141
|
export type JsonParameterInfo = JsonParameterInfo$instance;
|
|
134
142
|
|
|
135
143
|
export interface JsonParameterInfoValues$instance {
|
|
144
|
+
readonly __tsonic_type_System_Text_Json_Serialization_Metadata_JsonParameterInfoValues: never;
|
|
145
|
+
|
|
136
146
|
get DefaultValue(): unknown | undefined;
|
|
137
147
|
set DefaultValue(value: unknown | undefined);
|
|
138
148
|
HasDefaultValue: boolean;
|
|
@@ -152,6 +162,8 @@ export const JsonParameterInfoValues: {
|
|
|
152
162
|
export type JsonParameterInfoValues = JsonParameterInfoValues$instance;
|
|
153
163
|
|
|
154
164
|
export interface JsonPolymorphismOptions$instance {
|
|
165
|
+
readonly __tsonic_type_System_Text_Json_Serialization_Metadata_JsonPolymorphismOptions: never;
|
|
166
|
+
|
|
155
167
|
readonly DerivedTypes: IList_1<JsonDerivedType>;
|
|
156
168
|
IgnoreUnrecognizedTypeDiscriminators: boolean;
|
|
157
169
|
TypeDiscriminatorPropertyName: string;
|
|
@@ -167,6 +179,8 @@ export const JsonPolymorphismOptions: {
|
|
|
167
179
|
export type JsonPolymorphismOptions = JsonPolymorphismOptions$instance;
|
|
168
180
|
|
|
169
181
|
export interface JsonPropertyInfo$instance {
|
|
182
|
+
readonly __tsonic_type_System_Text_Json_Serialization_Metadata_JsonPropertyInfo: never;
|
|
183
|
+
|
|
170
184
|
get AssociatedParameter(): JsonParameterInfo | undefined;
|
|
171
185
|
set AssociatedParameter(value: JsonParameterInfo | undefined);
|
|
172
186
|
get AttributeProvider(): ICustomAttributeProvider | undefined;
|
|
@@ -200,6 +214,8 @@ export const JsonPropertyInfo: {
|
|
|
200
214
|
export type JsonPropertyInfo = JsonPropertyInfo$instance;
|
|
201
215
|
|
|
202
216
|
export interface JsonPropertyInfoValues_1$instance<T> {
|
|
217
|
+
readonly __tsonic_type_System_Text_Json_Serialization_Metadata_JsonPropertyInfoValues_1: never;
|
|
218
|
+
|
|
203
219
|
get AttributeProviderFactory(): Func_1<ICustomAttributeProvider> | undefined;
|
|
204
220
|
set AttributeProviderFactory(value: Func_1<ICustomAttributeProvider> | undefined);
|
|
205
221
|
get Converter(): JsonConverter_1<T> | undefined;
|
|
@@ -231,6 +247,8 @@ export const JsonPropertyInfoValues_1: {
|
|
|
231
247
|
export type JsonPropertyInfoValues_1<T> = JsonPropertyInfoValues_1$instance<T>;
|
|
232
248
|
|
|
233
249
|
export interface JsonTypeInfo$instance {
|
|
250
|
+
readonly __tsonic_type_System_Text_Json_Serialization_Metadata_JsonTypeInfo: never;
|
|
251
|
+
|
|
234
252
|
get ConstructorAttributeProvider(): ICustomAttributeProvider | undefined;
|
|
235
253
|
set ConstructorAttributeProvider(value: ICustomAttributeProvider | undefined);
|
|
236
254
|
readonly Converter: JsonConverter;
|
|
@@ -272,6 +290,8 @@ export const JsonTypeInfo: {
|
|
|
272
290
|
export type JsonTypeInfo = JsonTypeInfo$instance;
|
|
273
291
|
|
|
274
292
|
export interface JsonTypeInfo_1$instance<T> extends JsonTypeInfo {
|
|
293
|
+
readonly __tsonic_type_System_Text_Json_Serialization_Metadata_JsonTypeInfo_1: never;
|
|
294
|
+
|
|
275
295
|
get CreateObject(): Func_1<T> | undefined;
|
|
276
296
|
set CreateObject(value: Func_1<T> | undefined);
|
|
277
297
|
get SerializeHandler(): Action_2<Utf8JsonWriter, T> | undefined;
|
|
@@ -75,6 +75,8 @@ export type MatchEvaluator = (match: Match) => string;
|
|
|
75
75
|
|
|
76
76
|
|
|
77
77
|
export interface Regex_ValueMatchEnumerator$instance {
|
|
78
|
+
readonly __tsonic_type_System_Text_RegularExpressions_Regex_ValueMatchEnumerator: never;
|
|
79
|
+
|
|
78
80
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
79
81
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
80
82
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -100,6 +102,8 @@ export type Regex_ValueMatchEnumerator = Regex_ValueMatchEnumerator$instance & _
|
|
|
100
102
|
|
|
101
103
|
|
|
102
104
|
export interface Regex_ValueSplitEnumerator$instance {
|
|
105
|
+
readonly __tsonic_type_System_Text_RegularExpressions_Regex_ValueSplitEnumerator: never;
|
|
106
|
+
|
|
103
107
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
104
108
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
105
109
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -125,6 +129,8 @@ export type Regex_ValueSplitEnumerator = Regex_ValueSplitEnumerator$instance & _
|
|
|
125
129
|
|
|
126
130
|
|
|
127
131
|
export interface ValueMatch$instance {
|
|
132
|
+
readonly __tsonic_type_System_Text_RegularExpressions_ValueMatch: never;
|
|
133
|
+
|
|
128
134
|
readonly Index: int;
|
|
129
135
|
readonly Length: int;
|
|
130
136
|
}
|
|
@@ -138,6 +144,8 @@ export const ValueMatch: {
|
|
|
138
144
|
export type ValueMatch = ValueMatch$instance;
|
|
139
145
|
|
|
140
146
|
export interface Capture$instance {
|
|
147
|
+
readonly __tsonic_type_System_Text_RegularExpressions_Capture: never;
|
|
148
|
+
|
|
141
149
|
Index: int;
|
|
142
150
|
Length: int;
|
|
143
151
|
readonly Value: string;
|
|
@@ -153,6 +161,8 @@ export const Capture: {
|
|
|
153
161
|
export type Capture = Capture$instance;
|
|
154
162
|
|
|
155
163
|
export interface CaptureCollection$instance {
|
|
164
|
+
readonly __tsonic_type_System_Text_RegularExpressions_CaptureCollection: never;
|
|
165
|
+
|
|
156
166
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
157
167
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
158
168
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -191,6 +201,8 @@ export type CaptureCollection = CaptureCollection$instance & __CaptureCollection
|
|
|
191
201
|
|
|
192
202
|
|
|
193
203
|
export interface GeneratedRegexAttribute$instance extends Attribute {
|
|
204
|
+
readonly __tsonic_type_System_Text_RegularExpressions_GeneratedRegexAttribute: never;
|
|
205
|
+
|
|
194
206
|
readonly CultureName: string;
|
|
195
207
|
readonly MatchTimeoutMilliseconds: int;
|
|
196
208
|
readonly Options: RegexOptions;
|
|
@@ -210,6 +222,8 @@ export const GeneratedRegexAttribute: {
|
|
|
210
222
|
export type GeneratedRegexAttribute = GeneratedRegexAttribute$instance;
|
|
211
223
|
|
|
212
224
|
export interface Group$instance extends Capture {
|
|
225
|
+
readonly __tsonic_type_System_Text_RegularExpressions_Group: never;
|
|
226
|
+
|
|
213
227
|
readonly Captures: CaptureCollection;
|
|
214
228
|
readonly Name: string;
|
|
215
229
|
readonly Success: boolean;
|
|
@@ -224,6 +238,8 @@ export const Group: {
|
|
|
224
238
|
export type Group = Group$instance;
|
|
225
239
|
|
|
226
240
|
export interface GroupCollection$instance {
|
|
241
|
+
readonly __tsonic_type_System_Text_RegularExpressions_GroupCollection: never;
|
|
242
|
+
|
|
227
243
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
228
244
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
229
245
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -269,6 +285,8 @@ export type GroupCollection = GroupCollection$instance & __GroupCollection$views
|
|
|
269
285
|
|
|
270
286
|
|
|
271
287
|
export interface Match$instance extends Group {
|
|
288
|
+
readonly __tsonic_type_System_Text_RegularExpressions_Match: never;
|
|
289
|
+
|
|
272
290
|
readonly Groups: GroupCollection;
|
|
273
291
|
NextMatch(): Match;
|
|
274
292
|
Result(replacement: string): string;
|
|
@@ -283,6 +301,8 @@ export const Match: {
|
|
|
283
301
|
export type Match = Match$instance;
|
|
284
302
|
|
|
285
303
|
export interface MatchCollection$instance {
|
|
304
|
+
readonly __tsonic_type_System_Text_RegularExpressions_MatchCollection: never;
|
|
305
|
+
|
|
286
306
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
287
307
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
288
308
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -320,7 +340,9 @@ export interface __MatchCollection$views {
|
|
|
320
340
|
export type MatchCollection = MatchCollection$instance & __MatchCollection$views;
|
|
321
341
|
|
|
322
342
|
|
|
323
|
-
export interface Regex$instance {
|
|
343
|
+
export interface Regex$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
344
|
+
readonly __tsonic_type_System_Text_RegularExpressions_Regex: never;
|
|
345
|
+
|
|
324
346
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
325
347
|
|
|
326
348
|
readonly MatchTimeout: TimeSpan;
|
|
@@ -412,12 +434,12 @@ export interface __Regex$views {
|
|
|
412
434
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
413
435
|
}
|
|
414
436
|
|
|
415
|
-
export interface Regex$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
416
|
-
|
|
417
437
|
export type Regex = Regex$instance & __Regex$views;
|
|
418
438
|
|
|
419
439
|
|
|
420
440
|
export interface RegexCompilationInfo$instance {
|
|
441
|
+
readonly __tsonic_type_System_Text_RegularExpressions_RegexCompilationInfo: never;
|
|
442
|
+
|
|
421
443
|
IsPublic: boolean;
|
|
422
444
|
MatchTimeout: TimeSpan;
|
|
423
445
|
Name: string;
|
|
@@ -436,6 +458,8 @@ export const RegexCompilationInfo: {
|
|
|
436
458
|
export type RegexCompilationInfo = RegexCompilationInfo$instance;
|
|
437
459
|
|
|
438
460
|
export interface RegexMatchTimeoutException$instance extends TimeoutException {
|
|
461
|
+
readonly __tsonic_type_System_Text_RegularExpressions_RegexMatchTimeoutException: never;
|
|
462
|
+
|
|
439
463
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
440
464
|
|
|
441
465
|
readonly Input: string;
|
|
@@ -461,6 +485,8 @@ export type RegexMatchTimeoutException = RegexMatchTimeoutException$instance & _
|
|
|
461
485
|
|
|
462
486
|
|
|
463
487
|
export interface RegexParseException$instance extends ArgumentException {
|
|
488
|
+
readonly __tsonic_type_System_Text_RegularExpressions_RegexParseException: never;
|
|
489
|
+
|
|
464
490
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
465
491
|
|
|
466
492
|
readonly Error: RegexParseError;
|
|
@@ -481,6 +507,8 @@ export type RegexParseException = RegexParseException$instance & __RegexParseExc
|
|
|
481
507
|
|
|
482
508
|
|
|
483
509
|
export interface RegexRunner$instance {
|
|
510
|
+
readonly __tsonic_type_System_Text_RegularExpressions_RegexRunner: never;
|
|
511
|
+
|
|
484
512
|
FindFirstChar(): boolean;
|
|
485
513
|
Go(): void;
|
|
486
514
|
InitTrackCount(): void;
|
|
@@ -497,6 +525,8 @@ export const RegexRunner: (abstract new() => RegexRunner) & {
|
|
|
497
525
|
export type RegexRunner = RegexRunner$instance;
|
|
498
526
|
|
|
499
527
|
export interface RegexRunnerFactory$instance {
|
|
528
|
+
readonly __tsonic_type_System_Text_RegularExpressions_RegexRunnerFactory: never;
|
|
529
|
+
|
|
500
530
|
CreateInstance(): RegexRunner;
|
|
501
531
|
}
|
|
502
532
|
|
|
@@ -14,6 +14,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
14
14
|
import type { Boolean as ClrBoolean, Byte, Char, IFormatProvider, Int32, Object as ClrObject, ReadOnlySpan_1, Span_1, String as ClrString, Type, ValueType, Void } from "../../System/internal/index.js";
|
|
15
15
|
|
|
16
16
|
export interface Utf8_TryWriteInterpolatedStringHandler$instance {
|
|
17
|
+
readonly __tsonic_type_System_Text_Unicode_Utf8_TryWriteInterpolatedStringHandler: never;
|
|
18
|
+
|
|
17
19
|
AppendFormatted<T>(value: T): boolean;
|
|
18
20
|
AppendFormatted<T>(value: T, format: string): boolean;
|
|
19
21
|
AppendFormatted<T>(value: T, alignment: int): boolean;
|
|
@@ -38,6 +40,8 @@ export const Utf8_TryWriteInterpolatedStringHandler: {
|
|
|
38
40
|
export type Utf8_TryWriteInterpolatedStringHandler = Utf8_TryWriteInterpolatedStringHandler$instance;
|
|
39
41
|
|
|
40
42
|
export interface UnicodeRange$instance {
|
|
43
|
+
readonly __tsonic_type_System_Text_Unicode_UnicodeRange: never;
|
|
44
|
+
|
|
41
45
|
readonly FirstCodePoint: int;
|
|
42
46
|
readonly Length: int;
|
|
43
47
|
}
|