@tsonic/dotnet 10.0.4 → 10.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +10 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +42 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +60 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +12 -0
- package/Microsoft.Win32/internal/index.d.ts +5 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +68 -0
- package/System/internal/index.d.ts +1438 -161
- package/System.Buffers/internal/index.d.ts +42 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +7 -0
- package/System.Collections/internal/index.d.ts +109 -27
- package/System.Collections.Concurrent/internal/index.d.ts +52 -3
- package/System.Collections.Frozen/internal/index.d.ts +37 -0
- package/System.Collections.Generic/internal/index.d.ts +422 -33
- package/System.Collections.Immutable/internal/index.d.ts +193 -2
- package/System.Collections.ObjectModel/internal/index.d.ts +98 -6
- package/System.Collections.Specialized/internal/index.d.ts +72 -10
- package/System.ComponentModel/internal/index.d.ts +392 -23
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +79 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +120 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +40 -0
- package/System.Data/internal/index.d.ts +273 -20
- package/System.Data.Common/internal/index.d.ts +146 -32
- package/System.Data.SqlTypes/internal/index.d.ts +147 -48
- package/System.Diagnostics/internal/index.d.ts +213 -13
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +28 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +37 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +30 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +56 -6
- package/System.Drawing/internal/index.d.ts +38 -0
- package/System.Dynamic/internal/index.d.ts +50 -5
- package/System.Formats.Asn1/internal/index.d.ts +19 -3
- package/System.Formats.Tar/internal/index.d.ts +26 -6
- package/System.Globalization/internal/index.d.ts +116 -20
- package/System.IO/internal/index.d.ts +141 -18
- package/System.IO.Compression/internal/index.d.ts +46 -9
- package/System.IO.Enumeration/internal/index.d.ts +13 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +18 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +13 -0
- package/System.IO.Pipelines/internal/index.d.ts +22 -2
- package/System.IO.Pipes/internal/index.d.ts +31 -0
- package/System.Linq/internal/index.d.ts +55 -7
- package/System.Linq.Expressions/internal/index.d.ts +103 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +202 -21
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +103 -0
- package/System.Net.Http.Headers/internal/index.d.ts +151 -60
- package/System.Net.Http.Json/internal/index.d.ts +4 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +88 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +89 -0
- package/System.Net.Quic/internal/index.d.ts +31 -6
- package/System.Net.Security/internal/index.d.ts +40 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +59 -6
- package/System.Net.WebSockets/internal/index.d.ts +32 -3
- package/System.Numerics/internal/index.d.ts +173 -7
- package/System.Reflection/internal/index.d.ts +202 -30
- package/System.Reflection.Emit/internal/index.d.ts +80 -9
- package/System.Reflection.Metadata/internal/index.d.ts +650 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +80 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +39 -3
- package/System.Resources/internal/index.d.ts +35 -1
- package/System.Runtime/internal/index.d.ts +18 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +330 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +268 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +82 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +59 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +82 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +56 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +9 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +111 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +5 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +8 -0
- package/System.Runtime.Versioning/internal/index.d.ts +28 -0
- package/System.Security/internal/index.d.ts +46 -6
- package/System.Security.AccessControl/internal/index.d.ts +116 -2
- package/System.Security.Authentication/internal/index.d.ts +8 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +16 -5
- package/System.Security.Claims/internal/index.d.ts +12 -6
- package/System.Security.Cryptography/internal/index.d.ts +568 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +114 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +7 -0
- package/System.Security.Principal/internal/index.d.ts +42 -5
- package/System.Text/internal/index.d.ts +108 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +53 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +21 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +64 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +27 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +75 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +186 -24
- package/System.Threading.Channels/internal/index.d.ts +20 -0
- package/System.Threading.Tasks/internal/index.d.ts +48 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +99 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +6 -0
- package/System.Timers/internal/index.d.ts +11 -3
- package/System.Transactions/internal/index.d.ts +76 -15
- package/System.Web/internal/index.d.ts +4 -0
- package/System.Windows.Input/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +245 -20
- package/System.Xml.Linq/internal/index.d.ts +73 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +171 -0
- package/System.Xml.Serialization/internal/index.d.ts +141 -0
- package/System.Xml.XPath/internal/index.d.ts +27 -8
- package/System.Xml.Xsl/internal/index.d.ts +27 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +112 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -31,6 +31,16 @@ export enum NormalizationForm {
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
export interface Rune$instance {
|
|
34
|
+
readonly __tsonic_type_System_Text_Rune: never;
|
|
35
|
+
|
|
36
|
+
readonly __tsonic_iface_System_IComparable: never;
|
|
37
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
38
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
39
|
+
readonly __tsonic_iface_System_IFormattable: never;
|
|
40
|
+
readonly __tsonic_iface_System_ISpanFormattable: never;
|
|
41
|
+
readonly __tsonic_iface_System_IUtf8SpanFormattable: never;
|
|
42
|
+
readonly __tsonic_iface_System_IUtf8SpanParsable_1: never;
|
|
43
|
+
|
|
34
44
|
readonly IsAscii: boolean;
|
|
35
45
|
readonly IsBmp: boolean;
|
|
36
46
|
readonly Plane: int;
|
|
@@ -102,12 +112,16 @@ export interface __Rune$views {
|
|
|
102
112
|
TryFormat(utf8Destination: import("../../System/internal/index").Span_1<import("../../System/internal/index").Byte>, bytesWritten: int, format: import("../../System/internal/index").ReadOnlySpan_1<import("../../System/internal/index").Char>, provider: import("../../System/internal/index").IFormatProvider): boolean;
|
|
103
113
|
}
|
|
104
114
|
|
|
105
|
-
export interface Rune$instance extends System_Internal.IComparable_1$instance<Rune>, System_Internal.IUtf8SpanFormattable$instance, System_Internal.IUtf8SpanParsable_1$instance<Rune> {}
|
|
106
|
-
|
|
107
115
|
export type Rune = Rune$instance & __Rune$views;
|
|
108
116
|
|
|
109
117
|
|
|
110
118
|
export interface SpanLineEnumerator$instance {
|
|
119
|
+
readonly __tsonic_type_System_Text_SpanLineEnumerator: never;
|
|
120
|
+
|
|
121
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
122
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
123
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
124
|
+
|
|
111
125
|
readonly Current: ReadOnlySpan_1<System_Internal.Char>;
|
|
112
126
|
GetEnumerator(): SpanLineEnumerator;
|
|
113
127
|
MoveNext(): boolean;
|
|
@@ -130,6 +144,12 @@ export type SpanLineEnumerator = SpanLineEnumerator$instance & __SpanLineEnumera
|
|
|
130
144
|
|
|
131
145
|
|
|
132
146
|
export interface SpanRuneEnumerator$instance {
|
|
147
|
+
readonly __tsonic_type_System_Text_SpanRuneEnumerator: never;
|
|
148
|
+
|
|
149
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
150
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
151
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
152
|
+
|
|
133
153
|
readonly Current: Rune;
|
|
134
154
|
GetEnumerator(): SpanRuneEnumerator;
|
|
135
155
|
MoveNext(): boolean;
|
|
@@ -152,6 +172,8 @@ export type SpanRuneEnumerator = SpanRuneEnumerator$instance & __SpanRuneEnumera
|
|
|
152
172
|
|
|
153
173
|
|
|
154
174
|
export interface StringBuilder_AppendInterpolatedStringHandler$instance {
|
|
175
|
+
readonly __tsonic_type_System_Text_StringBuilder_AppendInterpolatedStringHandler: never;
|
|
176
|
+
|
|
155
177
|
AppendFormatted<T>(value: T): void;
|
|
156
178
|
AppendFormatted<T>(value: T, format: string): void;
|
|
157
179
|
AppendFormatted<T>(value: T, alignment: int): void;
|
|
@@ -174,6 +196,8 @@ export const StringBuilder_AppendInterpolatedStringHandler: {
|
|
|
174
196
|
export type StringBuilder_AppendInterpolatedStringHandler = StringBuilder_AppendInterpolatedStringHandler$instance;
|
|
175
197
|
|
|
176
198
|
export interface StringBuilder_ChunkEnumerator$instance {
|
|
199
|
+
readonly __tsonic_type_System_Text_StringBuilder_ChunkEnumerator: never;
|
|
200
|
+
|
|
177
201
|
readonly Current: ReadOnlyMemory_1<System_Internal.Char>;
|
|
178
202
|
GetEnumerator(): StringBuilder_ChunkEnumerator;
|
|
179
203
|
MoveNext(): boolean;
|
|
@@ -188,6 +212,14 @@ export const StringBuilder_ChunkEnumerator: {
|
|
|
188
212
|
export type StringBuilder_ChunkEnumerator = StringBuilder_ChunkEnumerator$instance;
|
|
189
213
|
|
|
190
214
|
export interface StringRuneEnumerator$instance {
|
|
215
|
+
readonly __tsonic_type_System_Text_StringRuneEnumerator: never;
|
|
216
|
+
|
|
217
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
218
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
219
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
220
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
221
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
222
|
+
|
|
191
223
|
readonly Current: Rune;
|
|
192
224
|
GetEnumerator(): StringRuneEnumerator;
|
|
193
225
|
MoveNext(): boolean;
|
|
@@ -212,6 +244,10 @@ export type StringRuneEnumerator = StringRuneEnumerator$instance & __StringRuneE
|
|
|
212
244
|
|
|
213
245
|
|
|
214
246
|
export interface ASCIIEncoding$instance extends Encoding$instance {
|
|
247
|
+
readonly __tsonic_type_System_Text_ASCIIEncoding: never;
|
|
248
|
+
|
|
249
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
250
|
+
|
|
215
251
|
readonly IsSingleByte: boolean;
|
|
216
252
|
Clone(): unknown;
|
|
217
253
|
GetByteCount(chars: char[], index: int, count: int): int;
|
|
@@ -269,6 +305,8 @@ export type ASCIIEncoding = ASCIIEncoding$instance & __ASCIIEncoding$views;
|
|
|
269
305
|
|
|
270
306
|
|
|
271
307
|
export interface CodePagesEncodingProvider$instance extends EncodingProvider {
|
|
308
|
+
readonly __tsonic_type_System_Text_CodePagesEncodingProvider: never;
|
|
309
|
+
|
|
272
310
|
GetEncoding(codepage: int): Encoding | undefined;
|
|
273
311
|
GetEncoding(name: string): Encoding | undefined;
|
|
274
312
|
GetEncoding(name: string, encoderFallback: EncoderFallback, decoderFallback: DecoderFallback): Encoding | undefined;
|
|
@@ -286,6 +324,8 @@ export const CodePagesEncodingProvider: {
|
|
|
286
324
|
export type CodePagesEncodingProvider = CodePagesEncodingProvider$instance;
|
|
287
325
|
|
|
288
326
|
export interface CompositeFormat$instance {
|
|
327
|
+
readonly __tsonic_type_System_Text_CompositeFormat: never;
|
|
328
|
+
|
|
289
329
|
readonly Format: string;
|
|
290
330
|
readonly MinimumArgumentCount: int;
|
|
291
331
|
}
|
|
@@ -299,6 +339,8 @@ export const CompositeFormat: {
|
|
|
299
339
|
export type CompositeFormat = CompositeFormat$instance;
|
|
300
340
|
|
|
301
341
|
export interface Decoder$instance {
|
|
342
|
+
readonly __tsonic_type_System_Text_Decoder: never;
|
|
343
|
+
|
|
302
344
|
get Fallback(): DecoderFallback | undefined;
|
|
303
345
|
set Fallback(value: DecoderFallback | undefined);
|
|
304
346
|
readonly FallbackBuffer: DecoderFallbackBuffer;
|
|
@@ -324,6 +366,8 @@ export const Decoder: (abstract new() => Decoder) & {
|
|
|
324
366
|
export type Decoder = Decoder$instance;
|
|
325
367
|
|
|
326
368
|
export interface DecoderExceptionFallback$instance extends DecoderFallback {
|
|
369
|
+
readonly __tsonic_type_System_Text_DecoderExceptionFallback: never;
|
|
370
|
+
|
|
327
371
|
readonly MaxCharCount: int;
|
|
328
372
|
CreateFallbackBuffer(): DecoderFallbackBuffer;
|
|
329
373
|
Equals(value: unknown): boolean;
|
|
@@ -339,6 +383,8 @@ export const DecoderExceptionFallback: {
|
|
|
339
383
|
export type DecoderExceptionFallback = DecoderExceptionFallback$instance;
|
|
340
384
|
|
|
341
385
|
export interface DecoderExceptionFallbackBuffer$instance extends DecoderFallbackBuffer {
|
|
386
|
+
readonly __tsonic_type_System_Text_DecoderExceptionFallbackBuffer: never;
|
|
387
|
+
|
|
342
388
|
readonly Remaining: int;
|
|
343
389
|
Fallback(bytesUnknown: byte[], index: int): boolean;
|
|
344
390
|
GetNextChar(): char;
|
|
@@ -354,6 +400,8 @@ export const DecoderExceptionFallbackBuffer: {
|
|
|
354
400
|
export type DecoderExceptionFallbackBuffer = DecoderExceptionFallbackBuffer$instance;
|
|
355
401
|
|
|
356
402
|
export interface DecoderFallback$instance {
|
|
403
|
+
readonly __tsonic_type_System_Text_DecoderFallback: never;
|
|
404
|
+
|
|
357
405
|
readonly MaxCharCount: int;
|
|
358
406
|
CreateFallbackBuffer(): DecoderFallbackBuffer;
|
|
359
407
|
}
|
|
@@ -368,6 +416,8 @@ export const DecoderFallback: (abstract new() => DecoderFallback) & {
|
|
|
368
416
|
export type DecoderFallback = DecoderFallback$instance;
|
|
369
417
|
|
|
370
418
|
export interface DecoderFallbackBuffer$instance {
|
|
419
|
+
readonly __tsonic_type_System_Text_DecoderFallbackBuffer: never;
|
|
420
|
+
|
|
371
421
|
readonly Remaining: int;
|
|
372
422
|
Fallback(bytesUnknown: byte[], index: int): boolean;
|
|
373
423
|
GetNextChar(): char;
|
|
@@ -383,6 +433,10 @@ export const DecoderFallbackBuffer: (abstract new() => DecoderFallbackBuffer) &
|
|
|
383
433
|
export type DecoderFallbackBuffer = DecoderFallbackBuffer$instance;
|
|
384
434
|
|
|
385
435
|
export interface DecoderFallbackException$instance extends ArgumentException {
|
|
436
|
+
readonly __tsonic_type_System_Text_DecoderFallbackException: never;
|
|
437
|
+
|
|
438
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
439
|
+
|
|
386
440
|
readonly BytesUnknown: byte[] | undefined;
|
|
387
441
|
readonly Index: int;
|
|
388
442
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -405,6 +459,8 @@ export type DecoderFallbackException = DecoderFallbackException$instance & __Dec
|
|
|
405
459
|
|
|
406
460
|
|
|
407
461
|
export interface DecoderReplacementFallback$instance extends DecoderFallback {
|
|
462
|
+
readonly __tsonic_type_System_Text_DecoderReplacementFallback: never;
|
|
463
|
+
|
|
408
464
|
readonly DefaultString: string;
|
|
409
465
|
readonly MaxCharCount: int;
|
|
410
466
|
CreateFallbackBuffer(): DecoderFallbackBuffer;
|
|
@@ -422,6 +478,8 @@ export const DecoderReplacementFallback: {
|
|
|
422
478
|
export type DecoderReplacementFallback = DecoderReplacementFallback$instance;
|
|
423
479
|
|
|
424
480
|
export interface DecoderReplacementFallbackBuffer$instance extends DecoderFallbackBuffer {
|
|
481
|
+
readonly __tsonic_type_System_Text_DecoderReplacementFallbackBuffer: never;
|
|
482
|
+
|
|
425
483
|
readonly Remaining: int;
|
|
426
484
|
Fallback(bytesUnknown: byte[], index: int): boolean;
|
|
427
485
|
GetNextChar(): char;
|
|
@@ -438,6 +496,8 @@ export const DecoderReplacementFallbackBuffer: {
|
|
|
438
496
|
export type DecoderReplacementFallbackBuffer = DecoderReplacementFallbackBuffer$instance;
|
|
439
497
|
|
|
440
498
|
export interface Encoder$instance {
|
|
499
|
+
readonly __tsonic_type_System_Text_Encoder: never;
|
|
500
|
+
|
|
441
501
|
get Fallback(): EncoderFallback | undefined;
|
|
442
502
|
set Fallback(value: EncoderFallback | undefined);
|
|
443
503
|
readonly FallbackBuffer: EncoderFallbackBuffer;
|
|
@@ -461,6 +521,8 @@ export const Encoder: (abstract new() => Encoder) & {
|
|
|
461
521
|
export type Encoder = Encoder$instance;
|
|
462
522
|
|
|
463
523
|
export interface EncoderExceptionFallback$instance extends EncoderFallback {
|
|
524
|
+
readonly __tsonic_type_System_Text_EncoderExceptionFallback: never;
|
|
525
|
+
|
|
464
526
|
readonly MaxCharCount: int;
|
|
465
527
|
CreateFallbackBuffer(): EncoderFallbackBuffer;
|
|
466
528
|
Equals(value: unknown): boolean;
|
|
@@ -476,6 +538,8 @@ export const EncoderExceptionFallback: {
|
|
|
476
538
|
export type EncoderExceptionFallback = EncoderExceptionFallback$instance;
|
|
477
539
|
|
|
478
540
|
export interface EncoderExceptionFallbackBuffer$instance extends EncoderFallbackBuffer {
|
|
541
|
+
readonly __tsonic_type_System_Text_EncoderExceptionFallbackBuffer: never;
|
|
542
|
+
|
|
479
543
|
readonly Remaining: int;
|
|
480
544
|
Fallback(charUnknown: char, index: int): boolean;
|
|
481
545
|
Fallback(charUnknownHigh: char, charUnknownLow: char, index: int): boolean;
|
|
@@ -492,6 +556,8 @@ export const EncoderExceptionFallbackBuffer: {
|
|
|
492
556
|
export type EncoderExceptionFallbackBuffer = EncoderExceptionFallbackBuffer$instance;
|
|
493
557
|
|
|
494
558
|
export interface EncoderFallback$instance {
|
|
559
|
+
readonly __tsonic_type_System_Text_EncoderFallback: never;
|
|
560
|
+
|
|
495
561
|
readonly MaxCharCount: int;
|
|
496
562
|
CreateFallbackBuffer(): EncoderFallbackBuffer;
|
|
497
563
|
}
|
|
@@ -506,6 +572,8 @@ export const EncoderFallback: (abstract new() => EncoderFallback) & {
|
|
|
506
572
|
export type EncoderFallback = EncoderFallback$instance;
|
|
507
573
|
|
|
508
574
|
export interface EncoderFallbackBuffer$instance {
|
|
575
|
+
readonly __tsonic_type_System_Text_EncoderFallbackBuffer: never;
|
|
576
|
+
|
|
509
577
|
readonly Remaining: int;
|
|
510
578
|
Fallback(charUnknown: char, index: int): boolean;
|
|
511
579
|
Fallback(charUnknownHigh: char, charUnknownLow: char, index: int): boolean;
|
|
@@ -522,6 +590,10 @@ export const EncoderFallbackBuffer: (abstract new() => EncoderFallbackBuffer) &
|
|
|
522
590
|
export type EncoderFallbackBuffer = EncoderFallbackBuffer$instance;
|
|
523
591
|
|
|
524
592
|
export interface EncoderFallbackException$instance extends ArgumentException {
|
|
593
|
+
readonly __tsonic_type_System_Text_EncoderFallbackException: never;
|
|
594
|
+
|
|
595
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
596
|
+
|
|
525
597
|
readonly CharUnknown: char;
|
|
526
598
|
readonly CharUnknownHigh: char;
|
|
527
599
|
readonly CharUnknownLow: char;
|
|
@@ -546,6 +618,8 @@ export type EncoderFallbackException = EncoderFallbackException$instance & __Enc
|
|
|
546
618
|
|
|
547
619
|
|
|
548
620
|
export interface EncoderReplacementFallback$instance extends EncoderFallback {
|
|
621
|
+
readonly __tsonic_type_System_Text_EncoderReplacementFallback: never;
|
|
622
|
+
|
|
549
623
|
readonly DefaultString: string;
|
|
550
624
|
readonly MaxCharCount: int;
|
|
551
625
|
CreateFallbackBuffer(): EncoderFallbackBuffer;
|
|
@@ -563,6 +637,8 @@ export const EncoderReplacementFallback: {
|
|
|
563
637
|
export type EncoderReplacementFallback = EncoderReplacementFallback$instance;
|
|
564
638
|
|
|
565
639
|
export interface EncoderReplacementFallbackBuffer$instance extends EncoderFallbackBuffer {
|
|
640
|
+
readonly __tsonic_type_System_Text_EncoderReplacementFallbackBuffer: never;
|
|
641
|
+
|
|
566
642
|
readonly Remaining: int;
|
|
567
643
|
Fallback(charUnknown: char, index: int): boolean;
|
|
568
644
|
Fallback(charUnknownHigh: char, charUnknownLow: char, index: int): boolean;
|
|
@@ -579,7 +655,11 @@ export const EncoderReplacementFallbackBuffer: {
|
|
|
579
655
|
|
|
580
656
|
export type EncoderReplacementFallbackBuffer = EncoderReplacementFallbackBuffer$instance;
|
|
581
657
|
|
|
582
|
-
export interface Encoding$instance {
|
|
658
|
+
export interface Encoding$instance extends System_Internal.ICloneable$instance {
|
|
659
|
+
readonly __tsonic_type_System_Text_Encoding: never;
|
|
660
|
+
|
|
661
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
662
|
+
|
|
583
663
|
readonly BodyName: string;
|
|
584
664
|
readonly CodePage: int;
|
|
585
665
|
DecoderFallback: DecoderFallback;
|
|
@@ -662,12 +742,12 @@ export interface __Encoding$views {
|
|
|
662
742
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
663
743
|
}
|
|
664
744
|
|
|
665
|
-
export interface Encoding$instance extends System_Internal.ICloneable$instance {}
|
|
666
|
-
|
|
667
745
|
export type Encoding = Encoding$instance & __Encoding$views;
|
|
668
746
|
|
|
669
747
|
|
|
670
748
|
export interface EncodingInfo$instance {
|
|
749
|
+
readonly __tsonic_type_System_Text_EncodingInfo: never;
|
|
750
|
+
|
|
671
751
|
readonly CodePage: int;
|
|
672
752
|
readonly DisplayName: string;
|
|
673
753
|
readonly Name: string;
|
|
@@ -685,6 +765,8 @@ export const EncodingInfo: {
|
|
|
685
765
|
export type EncodingInfo = EncodingInfo$instance;
|
|
686
766
|
|
|
687
767
|
export interface EncodingProvider$instance {
|
|
768
|
+
readonly __tsonic_type_System_Text_EncodingProvider: never;
|
|
769
|
+
|
|
688
770
|
GetEncoding(name: string): Encoding | undefined;
|
|
689
771
|
GetEncoding(codepage: int): Encoding | undefined;
|
|
690
772
|
GetEncoding(name: string, encoderFallback: EncoderFallback, decoderFallback: DecoderFallback): Encoding | undefined;
|
|
@@ -699,7 +781,11 @@ export const EncodingProvider: (abstract new() => EncodingProvider) & {
|
|
|
699
781
|
|
|
700
782
|
export type EncodingProvider = EncodingProvider$instance;
|
|
701
783
|
|
|
702
|
-
export interface StringBuilder$instance {
|
|
784
|
+
export interface StringBuilder$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
785
|
+
readonly __tsonic_type_System_Text_StringBuilder: never;
|
|
786
|
+
|
|
787
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
788
|
+
|
|
703
789
|
Capacity: int;
|
|
704
790
|
[index: number]: char;
|
|
705
791
|
Length: int;
|
|
@@ -811,12 +897,14 @@ export interface __StringBuilder$views {
|
|
|
811
897
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
812
898
|
}
|
|
813
899
|
|
|
814
|
-
export interface StringBuilder$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
815
|
-
|
|
816
900
|
export type StringBuilder = StringBuilder$instance & __StringBuilder$views;
|
|
817
901
|
|
|
818
902
|
|
|
819
903
|
export interface UnicodeEncoding$instance extends Encoding$instance {
|
|
904
|
+
readonly __tsonic_type_System_Text_UnicodeEncoding: never;
|
|
905
|
+
|
|
906
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
907
|
+
|
|
820
908
|
readonly Preamble: ReadOnlySpan_1<System_Internal.Byte>;
|
|
821
909
|
Clone(): unknown;
|
|
822
910
|
Equals(value: unknown): boolean;
|
|
@@ -872,6 +960,10 @@ export type UnicodeEncoding = UnicodeEncoding$instance & __UnicodeEncoding$views
|
|
|
872
960
|
|
|
873
961
|
|
|
874
962
|
export interface UTF32Encoding$instance extends Encoding$instance {
|
|
963
|
+
readonly __tsonic_type_System_Text_UTF32Encoding: never;
|
|
964
|
+
|
|
965
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
966
|
+
|
|
875
967
|
readonly Preamble: ReadOnlySpan_1<System_Internal.Byte>;
|
|
876
968
|
Clone(): unknown;
|
|
877
969
|
Equals(value: unknown): boolean;
|
|
@@ -926,6 +1018,10 @@ export type UTF32Encoding = UTF32Encoding$instance & __UTF32Encoding$views;
|
|
|
926
1018
|
|
|
927
1019
|
|
|
928
1020
|
export interface UTF7Encoding$instance extends Encoding$instance {
|
|
1021
|
+
readonly __tsonic_type_System_Text_UTF7Encoding: never;
|
|
1022
|
+
|
|
1023
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
1024
|
+
|
|
929
1025
|
Clone(): unknown;
|
|
930
1026
|
Equals(value: unknown): boolean;
|
|
931
1027
|
GetByteCount(chars: char[], index: int, count: int): int;
|
|
@@ -977,6 +1073,10 @@ export type UTF7Encoding = UTF7Encoding$instance & __UTF7Encoding$views;
|
|
|
977
1073
|
|
|
978
1074
|
|
|
979
1075
|
export interface UTF8Encoding$instance extends Encoding$instance {
|
|
1076
|
+
readonly __tsonic_type_System_Text_UTF8Encoding: never;
|
|
1077
|
+
|
|
1078
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
1079
|
+
|
|
980
1080
|
readonly Preamble: ReadOnlySpan_1<System_Internal.Byte>;
|
|
981
1081
|
Clone(): unknown;
|
|
982
1082
|
Equals(value: unknown): boolean;
|
|
@@ -17,6 +17,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
17
17
|
import type { Boolean as ClrBoolean, Byte, Char, Int32, Object as ClrObject, ReadOnlySpan_1, Span_1, String as ClrString, Type, Void } from "../../System/internal/index.js";
|
|
18
18
|
|
|
19
19
|
export interface HtmlEncoder$instance extends TextEncoder {
|
|
20
|
+
readonly __tsonic_type_System_Text_Encodings_Web_HtmlEncoder: never;
|
|
21
|
+
|
|
20
22
|
}
|
|
21
23
|
|
|
22
24
|
|
|
@@ -30,6 +32,8 @@ export const HtmlEncoder: (abstract new() => HtmlEncoder) & {
|
|
|
30
32
|
export type HtmlEncoder = HtmlEncoder$instance;
|
|
31
33
|
|
|
32
34
|
export interface JavaScriptEncoder$instance extends TextEncoder {
|
|
35
|
+
readonly __tsonic_type_System_Text_Encodings_Web_JavaScriptEncoder: never;
|
|
36
|
+
|
|
33
37
|
}
|
|
34
38
|
|
|
35
39
|
|
|
@@ -44,6 +48,8 @@ export const JavaScriptEncoder: (abstract new() => JavaScriptEncoder) & {
|
|
|
44
48
|
export type JavaScriptEncoder = JavaScriptEncoder$instance;
|
|
45
49
|
|
|
46
50
|
export interface TextEncoder$instance {
|
|
51
|
+
readonly __tsonic_type_System_Text_Encodings_Web_TextEncoder: never;
|
|
52
|
+
|
|
47
53
|
readonly MaxOutputCharactersPerInputCharacter: int;
|
|
48
54
|
Encode(value: string): string;
|
|
49
55
|
Encode(output: TextWriter, value: string): void;
|
|
@@ -65,6 +71,8 @@ export const TextEncoder: (abstract new() => TextEncoder) & {
|
|
|
65
71
|
export type TextEncoder = TextEncoder$instance;
|
|
66
72
|
|
|
67
73
|
export interface TextEncoderSettings$instance {
|
|
74
|
+
readonly __tsonic_type_System_Text_Encodings_Web_TextEncoderSettings: never;
|
|
75
|
+
|
|
68
76
|
AllowCharacter(character: char): void;
|
|
69
77
|
AllowCharacters(...characters: char[]): void;
|
|
70
78
|
AllowCodePoints(codePoints: IEnumerable_1<System_Internal.Int32>): void;
|
|
@@ -89,6 +97,8 @@ export const TextEncoderSettings: {
|
|
|
89
97
|
export type TextEncoderSettings = TextEncoderSettings$instance;
|
|
90
98
|
|
|
91
99
|
export interface UrlEncoder$instance extends TextEncoder {
|
|
100
|
+
readonly __tsonic_type_System_Text_Encodings_Web_UrlEncoder: never;
|
|
101
|
+
|
|
92
102
|
}
|
|
93
103
|
|
|
94
104
|
|
|
@@ -71,6 +71,8 @@ export enum JsonValueKind {
|
|
|
71
71
|
|
|
72
72
|
|
|
73
73
|
export interface JsonDocumentOptions$instance {
|
|
74
|
+
readonly __tsonic_type_System_Text_Json_JsonDocumentOptions: never;
|
|
75
|
+
|
|
74
76
|
AllowDuplicateProperties: boolean;
|
|
75
77
|
AllowTrailingCommas: boolean;
|
|
76
78
|
CommentHandling: JsonCommentHandling;
|
|
@@ -86,6 +88,8 @@ export const JsonDocumentOptions: {
|
|
|
86
88
|
export type JsonDocumentOptions = JsonDocumentOptions$instance;
|
|
87
89
|
|
|
88
90
|
export interface JsonElement$instance {
|
|
91
|
+
readonly __tsonic_type_System_Text_Json_JsonElement: never;
|
|
92
|
+
|
|
89
93
|
readonly [index: number]: JsonElement;
|
|
90
94
|
readonly ValueKind: JsonValueKind;
|
|
91
95
|
Clone(): JsonElement;
|
|
@@ -154,6 +158,14 @@ export const JsonElement: {
|
|
|
154
158
|
export type JsonElement = JsonElement$instance;
|
|
155
159
|
|
|
156
160
|
export interface JsonElement_ArrayEnumerator$instance extends IDisposable {
|
|
161
|
+
readonly __tsonic_type_System_Text_Json_JsonElement_ArrayEnumerator: never;
|
|
162
|
+
|
|
163
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
164
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
165
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
166
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
167
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
168
|
+
|
|
157
169
|
readonly Current: JsonElement;
|
|
158
170
|
Dispose(): void;
|
|
159
171
|
GetEnumerator(): JsonElement_ArrayEnumerator;
|
|
@@ -178,6 +190,14 @@ export type JsonElement_ArrayEnumerator = JsonElement_ArrayEnumerator$instance &
|
|
|
178
190
|
|
|
179
191
|
|
|
180
192
|
export interface JsonElement_ObjectEnumerator$instance extends IDisposable {
|
|
193
|
+
readonly __tsonic_type_System_Text_Json_JsonElement_ObjectEnumerator: never;
|
|
194
|
+
|
|
195
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
196
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
197
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
198
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
199
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
200
|
+
|
|
181
201
|
readonly Current: JsonProperty;
|
|
182
202
|
Dispose(): void;
|
|
183
203
|
GetEnumerator(): JsonElement_ObjectEnumerator;
|
|
@@ -202,6 +222,10 @@ export type JsonElement_ObjectEnumerator = JsonElement_ObjectEnumerator$instance
|
|
|
202
222
|
|
|
203
223
|
|
|
204
224
|
export interface JsonEncodedText$instance {
|
|
225
|
+
readonly __tsonic_type_System_Text_Json_JsonEncodedText: never;
|
|
226
|
+
|
|
227
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
228
|
+
|
|
205
229
|
readonly EncodedUtf8Bytes: ReadOnlySpan_1<System_Internal.Byte>;
|
|
206
230
|
readonly Value: string;
|
|
207
231
|
Equals(other: JsonEncodedText): boolean;
|
|
@@ -230,6 +254,8 @@ export type JsonEncodedText = JsonEncodedText$instance & __JsonEncodedText$views
|
|
|
230
254
|
|
|
231
255
|
|
|
232
256
|
export interface JsonProperty$instance {
|
|
257
|
+
readonly __tsonic_type_System_Text_Json_JsonProperty: never;
|
|
258
|
+
|
|
233
259
|
readonly Name: string;
|
|
234
260
|
readonly Value: JsonElement;
|
|
235
261
|
NameEquals(text: string): boolean;
|
|
@@ -248,6 +274,8 @@ export const JsonProperty: {
|
|
|
248
274
|
export type JsonProperty = JsonProperty$instance;
|
|
249
275
|
|
|
250
276
|
export interface JsonReaderOptions$instance {
|
|
277
|
+
readonly __tsonic_type_System_Text_Json_JsonReaderOptions: never;
|
|
278
|
+
|
|
251
279
|
AllowMultipleValues: boolean;
|
|
252
280
|
AllowTrailingCommas: boolean;
|
|
253
281
|
CommentHandling: JsonCommentHandling;
|
|
@@ -263,6 +291,8 @@ export const JsonReaderOptions: {
|
|
|
263
291
|
export type JsonReaderOptions = JsonReaderOptions$instance;
|
|
264
292
|
|
|
265
293
|
export interface JsonReaderState$instance {
|
|
294
|
+
readonly __tsonic_type_System_Text_Json_JsonReaderState: never;
|
|
295
|
+
|
|
266
296
|
readonly Options: JsonReaderOptions;
|
|
267
297
|
}
|
|
268
298
|
|
|
@@ -275,6 +305,8 @@ export const JsonReaderState: {
|
|
|
275
305
|
export type JsonReaderState = JsonReaderState$instance;
|
|
276
306
|
|
|
277
307
|
export interface JsonWriterOptions$instance {
|
|
308
|
+
readonly __tsonic_type_System_Text_Json_JsonWriterOptions: never;
|
|
309
|
+
|
|
278
310
|
get Encoder(): JavaScriptEncoder | undefined;
|
|
279
311
|
set Encoder(value: JavaScriptEncoder | undefined);
|
|
280
312
|
IndentCharacter: char;
|
|
@@ -294,6 +326,8 @@ export const JsonWriterOptions: {
|
|
|
294
326
|
export type JsonWriterOptions = JsonWriterOptions$instance;
|
|
295
327
|
|
|
296
328
|
export interface Utf8JsonReader$instance {
|
|
329
|
+
readonly __tsonic_type_System_Text_Json_Utf8JsonReader: never;
|
|
330
|
+
|
|
297
331
|
readonly BytesConsumed: long;
|
|
298
332
|
readonly CurrentDepth: int;
|
|
299
333
|
readonly CurrentState: JsonReaderState;
|
|
@@ -359,7 +393,11 @@ export const Utf8JsonReader: {
|
|
|
359
393
|
|
|
360
394
|
export type Utf8JsonReader = Utf8JsonReader$instance;
|
|
361
395
|
|
|
362
|
-
export interface JsonDocument$instance {
|
|
396
|
+
export interface JsonDocument$instance extends System_Internal.IDisposable$instance {
|
|
397
|
+
readonly __tsonic_type_System_Text_Json_JsonDocument: never;
|
|
398
|
+
|
|
399
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
400
|
+
|
|
363
401
|
readonly RootElement: JsonElement;
|
|
364
402
|
Dispose(): void;
|
|
365
403
|
WriteTo(writer: Utf8JsonWriter): void;
|
|
@@ -382,12 +420,14 @@ export interface __JsonDocument$views {
|
|
|
382
420
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
383
421
|
}
|
|
384
422
|
|
|
385
|
-
export interface JsonDocument$instance extends System_Internal.IDisposable$instance {}
|
|
386
|
-
|
|
387
423
|
export type JsonDocument = JsonDocument$instance & __JsonDocument$views;
|
|
388
424
|
|
|
389
425
|
|
|
390
426
|
export interface JsonException$instance extends Exception {
|
|
427
|
+
readonly __tsonic_type_System_Text_Json_JsonException: never;
|
|
428
|
+
|
|
429
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
430
|
+
|
|
391
431
|
BytePositionInLine: Nullable_1<System_Internal.Int64>;
|
|
392
432
|
LineNumber: Nullable_1<System_Internal.Int64>;
|
|
393
433
|
readonly Message: string;
|
|
@@ -414,6 +454,8 @@ export type JsonException = JsonException$instance & __JsonException$views;
|
|
|
414
454
|
|
|
415
455
|
|
|
416
456
|
export interface JsonNamingPolicy$instance {
|
|
457
|
+
readonly __tsonic_type_System_Text_Json_JsonNamingPolicy: never;
|
|
458
|
+
|
|
417
459
|
ConvertName(name: string): string;
|
|
418
460
|
}
|
|
419
461
|
|
|
@@ -430,6 +472,8 @@ export const JsonNamingPolicy: (abstract new() => JsonNamingPolicy) & {
|
|
|
430
472
|
export type JsonNamingPolicy = JsonNamingPolicy$instance;
|
|
431
473
|
|
|
432
474
|
export interface JsonSerializerOptions$instance {
|
|
475
|
+
readonly __tsonic_type_System_Text_Json_JsonSerializerOptions: never;
|
|
476
|
+
|
|
433
477
|
AllowDuplicateProperties: boolean;
|
|
434
478
|
AllowOutOfOrderMetadataProperties: boolean;
|
|
435
479
|
AllowTrailingCommas: boolean;
|
|
@@ -486,7 +530,12 @@ export const JsonSerializerOptions: {
|
|
|
486
530
|
|
|
487
531
|
export type JsonSerializerOptions = JsonSerializerOptions$instance;
|
|
488
532
|
|
|
489
|
-
export interface Utf8JsonWriter$instance {
|
|
533
|
+
export interface Utf8JsonWriter$instance extends System_Internal.IAsyncDisposable$instance, System_Internal.IDisposable$instance {
|
|
534
|
+
readonly __tsonic_type_System_Text_Json_Utf8JsonWriter: never;
|
|
535
|
+
|
|
536
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
537
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
538
|
+
|
|
490
539
|
BytesCommitted: long;
|
|
491
540
|
BytesPending: int;
|
|
492
541
|
readonly CurrentDepth: int;
|
|
@@ -623,8 +672,6 @@ export interface __Utf8JsonWriter$views {
|
|
|
623
672
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
624
673
|
}
|
|
625
674
|
|
|
626
|
-
export interface Utf8JsonWriter$instance extends System_Internal.IAsyncDisposable$instance, System_Internal.IDisposable$instance {}
|
|
627
|
-
|
|
628
675
|
export type Utf8JsonWriter = Utf8JsonWriter$instance & __Utf8JsonWriter$views;
|
|
629
676
|
|
|
630
677
|
|
|
@@ -22,6 +22,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
22
22
|
import type { Boolean as ClrBoolean, Byte, Char, DateTime, DateTimeOffset, Decimal, Double, Func_2, Guid, Int16, Int32, Int64, Nullable_1, Object as ClrObject, ReadOnlySpan_1, SByte, Single, String as ClrString, Type, UInt16, UInt32, UInt64, ValueType, Void } from "../../System/internal/index.js";
|
|
23
23
|
|
|
24
24
|
export interface JsonNodeOptions$instance {
|
|
25
|
+
readonly __tsonic_type_System_Text_Json_Nodes_JsonNodeOptions: never;
|
|
26
|
+
|
|
25
27
|
PropertyNameCaseInsensitive: boolean;
|
|
26
28
|
}
|
|
27
29
|
|
|
@@ -34,6 +36,13 @@ export const JsonNodeOptions: {
|
|
|
34
36
|
export type JsonNodeOptions = JsonNodeOptions$instance;
|
|
35
37
|
|
|
36
38
|
export interface JsonArray$instance extends JsonNode {
|
|
39
|
+
readonly __tsonic_type_System_Text_Json_Nodes_JsonArray: never;
|
|
40
|
+
|
|
41
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
42
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
43
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
44
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
45
|
+
|
|
37
46
|
readonly Count: int;
|
|
38
47
|
Add<T>(value: T): void;
|
|
39
48
|
Add(item: JsonNode): void;
|
|
@@ -72,6 +81,8 @@ export type JsonArray = JsonArray$instance & __JsonArray$views;
|
|
|
72
81
|
|
|
73
82
|
|
|
74
83
|
export interface JsonNode$instance {
|
|
84
|
+
readonly __tsonic_type_System_Text_Json_Nodes_JsonNode: never;
|
|
85
|
+
|
|
75
86
|
readonly Options: Nullable_1<JsonNodeOptions>;
|
|
76
87
|
get Parent(): JsonNode | undefined;
|
|
77
88
|
set Parent(value: JsonNode | undefined);
|
|
@@ -109,6 +120,14 @@ export const JsonNode: {
|
|
|
109
120
|
export type JsonNode = JsonNode$instance;
|
|
110
121
|
|
|
111
122
|
export interface JsonObject$instance extends JsonNode {
|
|
123
|
+
readonly __tsonic_type_System_Text_Json_Nodes_JsonObject: never;
|
|
124
|
+
|
|
125
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
126
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
127
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
128
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
129
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
130
|
+
|
|
112
131
|
readonly Count: int;
|
|
113
132
|
Add(propertyName: string, value: JsonNode): void;
|
|
114
133
|
Add(property: KeyValuePair_2<System_Internal.String, JsonNode>): void;
|
|
@@ -149,6 +168,8 @@ export type JsonObject = JsonObject$instance & __JsonObject$views;
|
|
|
149
168
|
|
|
150
169
|
|
|
151
170
|
export interface JsonValue$instance extends JsonNode {
|
|
171
|
+
readonly __tsonic_type_System_Text_Json_Nodes_JsonValue: never;
|
|
172
|
+
|
|
152
173
|
TryGetValue<T>(value: T): boolean;
|
|
153
174
|
}
|
|
154
175
|
|
|
@@ -13,6 +13,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
13
13
|
import type { Boolean as ClrBoolean, Func_3, Int32, Object as ClrObject, ReadOnlySpan_1, String as ClrString, Type, ValueType, Void } from "../../System/internal/index.js";
|
|
14
14
|
|
|
15
15
|
export interface JsonSchemaExporterContext$instance {
|
|
16
|
+
readonly __tsonic_type_System_Text_Json_Schema_JsonSchemaExporterContext: never;
|
|
17
|
+
|
|
16
18
|
readonly BaseTypeInfo: JsonTypeInfo | undefined;
|
|
17
19
|
readonly Path: ReadOnlySpan_1<System_Internal.String>;
|
|
18
20
|
readonly PropertyInfo: JsonPropertyInfo | undefined;
|
|
@@ -28,6 +30,8 @@ export const JsonSchemaExporterContext: {
|
|
|
28
30
|
export type JsonSchemaExporterContext = JsonSchemaExporterContext$instance;
|
|
29
31
|
|
|
30
32
|
export interface JsonSchemaExporterOptions$instance {
|
|
33
|
+
readonly __tsonic_type_System_Text_Json_Schema_JsonSchemaExporterOptions: never;
|
|
34
|
+
|
|
31
35
|
get TransformSchemaNode(): Func_3<JsonSchemaExporterContext, JsonNode, JsonNode> | undefined;
|
|
32
36
|
set TransformSchemaNode(value: Func_3<JsonSchemaExporterContext, JsonNode, JsonNode> | undefined);
|
|
33
37
|
TreatNullObliviousAsNonNullable: boolean;
|