@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
|
@@ -126,6 +126,8 @@ export enum EventTask {
|
|
|
126
126
|
|
|
127
127
|
|
|
128
128
|
export interface EventSource_EventSourcePrimitive$instance {
|
|
129
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_EventSource_EventSourcePrimitive: never;
|
|
130
|
+
|
|
129
131
|
}
|
|
130
132
|
|
|
131
133
|
|
|
@@ -137,6 +139,8 @@ export const EventSource_EventSourcePrimitive: {
|
|
|
137
139
|
export type EventSource_EventSourcePrimitive = EventSource_EventSourcePrimitive$instance;
|
|
138
140
|
|
|
139
141
|
export interface EventSourceOptions$instance {
|
|
142
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_EventSourceOptions: never;
|
|
143
|
+
|
|
140
144
|
ActivityOptions: EventActivityOptions;
|
|
141
145
|
Keywords: EventKeywords;
|
|
142
146
|
Level: EventLevel;
|
|
@@ -152,7 +156,11 @@ export const EventSourceOptions: {
|
|
|
152
156
|
|
|
153
157
|
export type EventSourceOptions = EventSourceOptions$instance;
|
|
154
158
|
|
|
155
|
-
export interface DiagnosticCounter$instance {
|
|
159
|
+
export interface DiagnosticCounter$instance extends System_Internal.IDisposable$instance {
|
|
160
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_DiagnosticCounter: never;
|
|
161
|
+
|
|
162
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
163
|
+
|
|
156
164
|
DisplayName: string;
|
|
157
165
|
DisplayUnits: string;
|
|
158
166
|
readonly EventSource: EventSource;
|
|
@@ -170,12 +178,12 @@ export interface __DiagnosticCounter$views {
|
|
|
170
178
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
171
179
|
}
|
|
172
180
|
|
|
173
|
-
export interface DiagnosticCounter$instance extends System_Internal.IDisposable$instance {}
|
|
174
|
-
|
|
175
181
|
export type DiagnosticCounter = DiagnosticCounter$instance & __DiagnosticCounter$views;
|
|
176
182
|
|
|
177
183
|
|
|
178
184
|
export interface EventAttribute$instance extends Attribute {
|
|
185
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_EventAttribute: never;
|
|
186
|
+
|
|
179
187
|
ActivityOptions: EventActivityOptions;
|
|
180
188
|
Channel: EventChannel;
|
|
181
189
|
readonly EventId: int;
|
|
@@ -198,6 +206,8 @@ export const EventAttribute: {
|
|
|
198
206
|
export type EventAttribute = EventAttribute$instance;
|
|
199
207
|
|
|
200
208
|
export interface EventCommandEventArgs$instance extends EventArgs {
|
|
209
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_EventCommandEventArgs: never;
|
|
210
|
+
|
|
201
211
|
get Arguments(): IDictionary_2<System_Internal.String, string | undefined> | undefined;
|
|
202
212
|
set Arguments(value: IDictionary_2<System_Internal.String, string | undefined> | undefined);
|
|
203
213
|
Command: EventCommand;
|
|
@@ -213,6 +223,10 @@ export const EventCommandEventArgs: {
|
|
|
213
223
|
export type EventCommandEventArgs = EventCommandEventArgs$instance;
|
|
214
224
|
|
|
215
225
|
export interface EventCounter$instance extends DiagnosticCounter$instance {
|
|
226
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_EventCounter: never;
|
|
227
|
+
|
|
228
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
229
|
+
|
|
216
230
|
Dispose(): void;
|
|
217
231
|
ToString(): string;
|
|
218
232
|
WriteMetric(value: float): void;
|
|
@@ -233,6 +247,8 @@ export type EventCounter = EventCounter$instance & __EventCounter$views;
|
|
|
233
247
|
|
|
234
248
|
|
|
235
249
|
export interface EventDataAttribute$instance extends Attribute {
|
|
250
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_EventDataAttribute: never;
|
|
251
|
+
|
|
236
252
|
get Name(): string | undefined;
|
|
237
253
|
set Name(value: string | undefined);
|
|
238
254
|
}
|
|
@@ -246,6 +262,8 @@ export const EventDataAttribute: {
|
|
|
246
262
|
export type EventDataAttribute = EventDataAttribute$instance;
|
|
247
263
|
|
|
248
264
|
export interface EventFieldAttribute$instance extends Attribute {
|
|
265
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_EventFieldAttribute: never;
|
|
266
|
+
|
|
249
267
|
Format: EventFieldFormat;
|
|
250
268
|
Tags: EventFieldTags;
|
|
251
269
|
}
|
|
@@ -259,6 +277,8 @@ export const EventFieldAttribute: {
|
|
|
259
277
|
export type EventFieldAttribute = EventFieldAttribute$instance;
|
|
260
278
|
|
|
261
279
|
export interface EventIgnoreAttribute$instance extends Attribute {
|
|
280
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_EventIgnoreAttribute: never;
|
|
281
|
+
|
|
262
282
|
}
|
|
263
283
|
|
|
264
284
|
|
|
@@ -269,7 +289,11 @@ export const EventIgnoreAttribute: {
|
|
|
269
289
|
|
|
270
290
|
export type EventIgnoreAttribute = EventIgnoreAttribute$instance;
|
|
271
291
|
|
|
272
|
-
export interface EventListener$instance {
|
|
292
|
+
export interface EventListener$instance extends System_Internal.IDisposable$instance {
|
|
293
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_EventListener: never;
|
|
294
|
+
|
|
295
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
296
|
+
|
|
273
297
|
DisableEvents(eventSource: EventSource): void;
|
|
274
298
|
Dispose(): void;
|
|
275
299
|
EnableEvents(eventSource: EventSource, level: EventLevel): void;
|
|
@@ -289,12 +313,14 @@ export interface __EventListener$views {
|
|
|
289
313
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
290
314
|
}
|
|
291
315
|
|
|
292
|
-
export interface EventListener$instance extends System_Internal.IDisposable$instance {}
|
|
293
|
-
|
|
294
316
|
export type EventListener = EventListener$instance & __EventListener$views;
|
|
295
317
|
|
|
296
318
|
|
|
297
319
|
export interface EventSource$instance {
|
|
320
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_EventSource: never;
|
|
321
|
+
|
|
322
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
323
|
+
|
|
298
324
|
readonly ConstructionException: Exception | undefined;
|
|
299
325
|
readonly Guid: Guid;
|
|
300
326
|
readonly Name: string;
|
|
@@ -341,6 +367,8 @@ export type EventSource = EventSource$instance & __EventSource$views;
|
|
|
341
367
|
|
|
342
368
|
|
|
343
369
|
export interface EventSourceAttribute$instance extends Attribute {
|
|
370
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_EventSourceAttribute: never;
|
|
371
|
+
|
|
344
372
|
get Guid(): string | undefined;
|
|
345
373
|
set Guid(value: string | undefined);
|
|
346
374
|
get LocalizationResources(): string | undefined;
|
|
@@ -358,6 +386,8 @@ export const EventSourceAttribute: {
|
|
|
358
386
|
export type EventSourceAttribute = EventSourceAttribute$instance;
|
|
359
387
|
|
|
360
388
|
export interface EventSourceCreatedEventArgs$instance extends EventArgs {
|
|
389
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_EventSourceCreatedEventArgs: never;
|
|
390
|
+
|
|
361
391
|
get EventSource(): EventSource | undefined;
|
|
362
392
|
set EventSource(value: EventSource | undefined);
|
|
363
393
|
}
|
|
@@ -371,6 +401,10 @@ export const EventSourceCreatedEventArgs: {
|
|
|
371
401
|
export type EventSourceCreatedEventArgs = EventSourceCreatedEventArgs$instance;
|
|
372
402
|
|
|
373
403
|
export interface EventSourceException$instance extends Exception {
|
|
404
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_EventSourceException: never;
|
|
405
|
+
|
|
406
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
407
|
+
|
|
374
408
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
375
409
|
}
|
|
376
410
|
|
|
@@ -390,6 +424,8 @@ export type EventSourceException = EventSourceException$instance & __EventSource
|
|
|
390
424
|
|
|
391
425
|
|
|
392
426
|
export interface EventWrittenEventArgs$instance extends EventArgs {
|
|
427
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_EventWrittenEventArgs: never;
|
|
428
|
+
|
|
393
429
|
readonly ActivityId: Guid;
|
|
394
430
|
readonly Channel: EventChannel;
|
|
395
431
|
readonly EventId: int;
|
|
@@ -421,6 +457,10 @@ export const EventWrittenEventArgs: {
|
|
|
421
457
|
export type EventWrittenEventArgs = EventWrittenEventArgs$instance;
|
|
422
458
|
|
|
423
459
|
export interface IncrementingEventCounter$instance extends DiagnosticCounter$instance {
|
|
460
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_IncrementingEventCounter: never;
|
|
461
|
+
|
|
462
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
463
|
+
|
|
424
464
|
DisplayRateTimeScale: TimeSpan;
|
|
425
465
|
Dispose(): void;
|
|
426
466
|
Increment(increment?: double): void;
|
|
@@ -441,6 +481,10 @@ export type IncrementingEventCounter = IncrementingEventCounter$instance & __Inc
|
|
|
441
481
|
|
|
442
482
|
|
|
443
483
|
export interface IncrementingPollingCounter$instance extends DiagnosticCounter$instance {
|
|
484
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_IncrementingPollingCounter: never;
|
|
485
|
+
|
|
486
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
487
|
+
|
|
444
488
|
DisplayRateTimeScale: TimeSpan;
|
|
445
489
|
Dispose(): void;
|
|
446
490
|
ToString(): string;
|
|
@@ -460,6 +504,8 @@ export type IncrementingPollingCounter = IncrementingPollingCounter$instance & _
|
|
|
460
504
|
|
|
461
505
|
|
|
462
506
|
export interface NonEventAttribute$instance extends Attribute {
|
|
507
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_NonEventAttribute: never;
|
|
508
|
+
|
|
463
509
|
}
|
|
464
510
|
|
|
465
511
|
|
|
@@ -471,6 +517,10 @@ export const NonEventAttribute: {
|
|
|
471
517
|
export type NonEventAttribute = NonEventAttribute$instance;
|
|
472
518
|
|
|
473
519
|
export interface PollingCounter$instance extends DiagnosticCounter$instance {
|
|
520
|
+
readonly __tsonic_type_System_Diagnostics_Tracing_PollingCounter: never;
|
|
521
|
+
|
|
522
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
523
|
+
|
|
474
524
|
Dispose(): void;
|
|
475
525
|
ToString(): string;
|
|
476
526
|
}
|
|
@@ -194,6 +194,10 @@ export enum KnownColor {
|
|
|
194
194
|
|
|
195
195
|
|
|
196
196
|
export interface Color$instance {
|
|
197
|
+
readonly __tsonic_type_System_Drawing_Color: never;
|
|
198
|
+
|
|
199
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
200
|
+
|
|
197
201
|
readonly A: byte;
|
|
198
202
|
readonly B: byte;
|
|
199
203
|
readonly G: byte;
|
|
@@ -380,6 +384,10 @@ export type Color = Color$instance & __Color$views;
|
|
|
380
384
|
|
|
381
385
|
|
|
382
386
|
export interface Point$instance {
|
|
387
|
+
readonly __tsonic_type_System_Drawing_Point: never;
|
|
388
|
+
|
|
389
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
390
|
+
|
|
383
391
|
readonly IsEmpty: boolean;
|
|
384
392
|
X: int;
|
|
385
393
|
Y: int;
|
|
@@ -416,6 +424,10 @@ export type Point = Point$instance & __Point$views;
|
|
|
416
424
|
|
|
417
425
|
|
|
418
426
|
export interface PointF$instance {
|
|
427
|
+
readonly __tsonic_type_System_Drawing_PointF: never;
|
|
428
|
+
|
|
429
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
430
|
+
|
|
419
431
|
readonly IsEmpty: boolean;
|
|
420
432
|
X: float;
|
|
421
433
|
Y: float;
|
|
@@ -449,6 +461,10 @@ export type PointF = PointF$instance & __PointF$views;
|
|
|
449
461
|
|
|
450
462
|
|
|
451
463
|
export interface Rectangle$instance {
|
|
464
|
+
readonly __tsonic_type_System_Drawing_Rectangle: never;
|
|
465
|
+
|
|
466
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
467
|
+
|
|
452
468
|
readonly Bottom: int;
|
|
453
469
|
Height: int;
|
|
454
470
|
readonly IsEmpty: boolean;
|
|
@@ -501,6 +517,10 @@ export type Rectangle = Rectangle$instance & __Rectangle$views;
|
|
|
501
517
|
|
|
502
518
|
|
|
503
519
|
export interface RectangleF$instance {
|
|
520
|
+
readonly __tsonic_type_System_Drawing_RectangleF: never;
|
|
521
|
+
|
|
522
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
523
|
+
|
|
504
524
|
readonly Bottom: float;
|
|
505
525
|
Height: float;
|
|
506
526
|
readonly IsEmpty: boolean;
|
|
@@ -552,6 +572,10 @@ export type RectangleF = RectangleF$instance & __RectangleF$views;
|
|
|
552
572
|
|
|
553
573
|
|
|
554
574
|
export interface Size$instance {
|
|
575
|
+
readonly __tsonic_type_System_Drawing_Size: never;
|
|
576
|
+
|
|
577
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
578
|
+
|
|
555
579
|
Height: int;
|
|
556
580
|
readonly IsEmpty: boolean;
|
|
557
581
|
Width: int;
|
|
@@ -585,6 +609,10 @@ export type Size = Size$instance & __Size$views;
|
|
|
585
609
|
|
|
586
610
|
|
|
587
611
|
export interface SizeF$instance {
|
|
612
|
+
readonly __tsonic_type_System_Drawing_SizeF: never;
|
|
613
|
+
|
|
614
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
615
|
+
|
|
588
616
|
Height: float;
|
|
589
617
|
readonly IsEmpty: boolean;
|
|
590
618
|
Width: float;
|
|
@@ -620,6 +648,8 @@ export type SizeF = SizeF$instance & __SizeF$views;
|
|
|
620
648
|
|
|
621
649
|
|
|
622
650
|
export interface ColorConverter$instance extends TypeConverter {
|
|
651
|
+
readonly __tsonic_type_System_Drawing_ColorConverter: never;
|
|
652
|
+
|
|
623
653
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
624
654
|
CanConvertFrom(sourceType: Type): boolean;
|
|
625
655
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -643,6 +673,8 @@ export const ColorConverter: {
|
|
|
643
673
|
export type ColorConverter = ColorConverter$instance;
|
|
644
674
|
|
|
645
675
|
export interface PointConverter$instance extends TypeConverter {
|
|
676
|
+
readonly __tsonic_type_System_Drawing_PointConverter: never;
|
|
677
|
+
|
|
646
678
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
647
679
|
CanConvertFrom(sourceType: Type): boolean;
|
|
648
680
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -671,6 +703,8 @@ export const PointConverter: {
|
|
|
671
703
|
export type PointConverter = PointConverter$instance;
|
|
672
704
|
|
|
673
705
|
export interface RectangleConverter$instance extends TypeConverter {
|
|
706
|
+
readonly __tsonic_type_System_Drawing_RectangleConverter: never;
|
|
707
|
+
|
|
674
708
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
675
709
|
CanConvertFrom(sourceType: Type): boolean;
|
|
676
710
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -699,6 +733,8 @@ export const RectangleConverter: {
|
|
|
699
733
|
export type RectangleConverter = RectangleConverter$instance;
|
|
700
734
|
|
|
701
735
|
export interface SizeConverter$instance extends TypeConverter {
|
|
736
|
+
readonly __tsonic_type_System_Drawing_SizeConverter: never;
|
|
737
|
+
|
|
702
738
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
703
739
|
CanConvertFrom(sourceType: Type): boolean;
|
|
704
740
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -727,6 +763,8 @@ export const SizeConverter: {
|
|
|
727
763
|
export type SizeConverter = SizeConverter$instance;
|
|
728
764
|
|
|
729
765
|
export interface SizeFConverter$instance extends TypeConverter {
|
|
766
|
+
readonly __tsonic_type_System_Drawing_SizeFConverter: never;
|
|
767
|
+
|
|
730
768
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
731
769
|
CanConvertFrom(sourceType: Type): boolean;
|
|
732
770
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -23,6 +23,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
23
23
|
import type { Boolean as ClrBoolean, Int32, Object as ClrObject, String as ClrString, Type, Void } from "../../System/internal/index.js";
|
|
24
24
|
|
|
25
25
|
export interface IDynamicMetaObjectProvider$instance {
|
|
26
|
+
readonly __tsonic_iface_System_Dynamic_IDynamicMetaObjectProvider: never;
|
|
27
|
+
|
|
26
28
|
GetMetaObject(parameter: Expression): DynamicMetaObject;
|
|
27
29
|
}
|
|
28
30
|
|
|
@@ -30,6 +32,8 @@ export interface IDynamicMetaObjectProvider$instance {
|
|
|
30
32
|
export type IDynamicMetaObjectProvider = IDynamicMetaObjectProvider$instance;
|
|
31
33
|
|
|
32
34
|
export interface IInvokeOnGetBinder$instance {
|
|
35
|
+
readonly __tsonic_iface_System_Dynamic_IInvokeOnGetBinder: never;
|
|
36
|
+
|
|
33
37
|
readonly InvokeOnGet: boolean;
|
|
34
38
|
}
|
|
35
39
|
|
|
@@ -37,6 +41,8 @@ export interface IInvokeOnGetBinder$instance {
|
|
|
37
41
|
export type IInvokeOnGetBinder = IInvokeOnGetBinder$instance;
|
|
38
42
|
|
|
39
43
|
export interface BinaryOperationBinder$instance extends DynamicMetaObjectBinder {
|
|
44
|
+
readonly __tsonic_type_System_Dynamic_BinaryOperationBinder: never;
|
|
45
|
+
|
|
40
46
|
readonly Operation: ExpressionType;
|
|
41
47
|
readonly ReturnType: Type;
|
|
42
48
|
Bind(target: DynamicMetaObject, args: DynamicMetaObject[]): DynamicMetaObject;
|
|
@@ -53,6 +59,8 @@ export const BinaryOperationBinder: (abstract new(operation: ExpressionType) =>
|
|
|
53
59
|
export type BinaryOperationBinder = BinaryOperationBinder$instance;
|
|
54
60
|
|
|
55
61
|
export interface BindingRestrictions$instance {
|
|
62
|
+
readonly __tsonic_type_System_Dynamic_BindingRestrictions: never;
|
|
63
|
+
|
|
56
64
|
Merge(restrictions: BindingRestrictions): BindingRestrictions;
|
|
57
65
|
ToExpression(): Expression;
|
|
58
66
|
}
|
|
@@ -70,6 +78,8 @@ export const BindingRestrictions: {
|
|
|
70
78
|
export type BindingRestrictions = BindingRestrictions$instance;
|
|
71
79
|
|
|
72
80
|
export interface CallInfo$instance {
|
|
81
|
+
readonly __tsonic_type_System_Dynamic_CallInfo: never;
|
|
82
|
+
|
|
73
83
|
readonly ArgumentCount: int;
|
|
74
84
|
readonly ArgumentNames: ReadOnlyCollection_1<System_Internal.String>;
|
|
75
85
|
Equals(obj: unknown): boolean;
|
|
@@ -86,6 +96,8 @@ export const CallInfo: {
|
|
|
86
96
|
export type CallInfo = CallInfo$instance;
|
|
87
97
|
|
|
88
98
|
export interface ConvertBinder$instance extends DynamicMetaObjectBinder {
|
|
99
|
+
readonly __tsonic_type_System_Dynamic_ConvertBinder: never;
|
|
100
|
+
|
|
89
101
|
readonly Explicit: boolean;
|
|
90
102
|
readonly ReturnType: Type;
|
|
91
103
|
readonly Type: Type;
|
|
@@ -103,6 +115,8 @@ export const ConvertBinder: (abstract new(type: Type, explicit: boolean) => Conv
|
|
|
103
115
|
export type ConvertBinder = ConvertBinder$instance;
|
|
104
116
|
|
|
105
117
|
export interface CreateInstanceBinder$instance extends DynamicMetaObjectBinder {
|
|
118
|
+
readonly __tsonic_type_System_Dynamic_CreateInstanceBinder: never;
|
|
119
|
+
|
|
106
120
|
readonly CallInfo: CallInfo;
|
|
107
121
|
readonly ReturnType: Type;
|
|
108
122
|
Bind(target: DynamicMetaObject, args: DynamicMetaObject[]): DynamicMetaObject;
|
|
@@ -119,6 +133,8 @@ export const CreateInstanceBinder: (abstract new(callInfo: CallInfo) => CreateIn
|
|
|
119
133
|
export type CreateInstanceBinder = CreateInstanceBinder$instance;
|
|
120
134
|
|
|
121
135
|
export interface DeleteIndexBinder$instance extends DynamicMetaObjectBinder {
|
|
136
|
+
readonly __tsonic_type_System_Dynamic_DeleteIndexBinder: never;
|
|
137
|
+
|
|
122
138
|
readonly CallInfo: CallInfo;
|
|
123
139
|
readonly ReturnType: Type;
|
|
124
140
|
Bind(target: DynamicMetaObject, args: DynamicMetaObject[]): DynamicMetaObject;
|
|
@@ -135,6 +151,8 @@ export const DeleteIndexBinder: (abstract new(callInfo: CallInfo) => DeleteIndex
|
|
|
135
151
|
export type DeleteIndexBinder = DeleteIndexBinder$instance;
|
|
136
152
|
|
|
137
153
|
export interface DeleteMemberBinder$instance extends DynamicMetaObjectBinder {
|
|
154
|
+
readonly __tsonic_type_System_Dynamic_DeleteMemberBinder: never;
|
|
155
|
+
|
|
138
156
|
readonly IgnoreCase: boolean;
|
|
139
157
|
readonly Name: string;
|
|
140
158
|
readonly ReturnType: Type;
|
|
@@ -152,6 +170,8 @@ export const DeleteMemberBinder: (abstract new(name: string, ignoreCase: boolean
|
|
|
152
170
|
export type DeleteMemberBinder = DeleteMemberBinder$instance;
|
|
153
171
|
|
|
154
172
|
export interface DynamicMetaObject$instance {
|
|
173
|
+
readonly __tsonic_type_System_Dynamic_DynamicMetaObject: never;
|
|
174
|
+
|
|
155
175
|
readonly Expression: Expression;
|
|
156
176
|
readonly HasValue: boolean;
|
|
157
177
|
readonly LimitType: Type;
|
|
@@ -185,6 +205,8 @@ export const DynamicMetaObject: {
|
|
|
185
205
|
export type DynamicMetaObject = DynamicMetaObject$instance;
|
|
186
206
|
|
|
187
207
|
export interface DynamicMetaObjectBinder$instance extends CallSiteBinder {
|
|
208
|
+
readonly __tsonic_type_System_Dynamic_DynamicMetaObjectBinder: never;
|
|
209
|
+
|
|
188
210
|
readonly ReturnType: Type;
|
|
189
211
|
Bind(args: unknown[], parameters: ReadOnlyCollection_1<ParameterExpression>, returnLabel: LabelTarget): Expression;
|
|
190
212
|
Bind(target: DynamicMetaObject, args: DynamicMetaObject[]): DynamicMetaObject;
|
|
@@ -201,7 +223,11 @@ export const DynamicMetaObjectBinder: (abstract new() => DynamicMetaObjectBinder
|
|
|
201
223
|
|
|
202
224
|
export type DynamicMetaObjectBinder = DynamicMetaObjectBinder$instance;
|
|
203
225
|
|
|
204
|
-
export interface DynamicObject$instance {
|
|
226
|
+
export interface DynamicObject$instance extends IDynamicMetaObjectProvider$instance {
|
|
227
|
+
readonly __tsonic_type_System_Dynamic_DynamicObject: never;
|
|
228
|
+
|
|
229
|
+
readonly __tsonic_iface_System_Dynamic_IDynamicMetaObjectProvider: never;
|
|
230
|
+
|
|
205
231
|
GetDynamicMemberNames(): IEnumerable_1<System_Internal.String>;
|
|
206
232
|
GetMetaObject(parameter: Expression): DynamicMetaObject;
|
|
207
233
|
TryBinaryOperation(binder: BinaryOperationBinder, arg: unknown, result: unknown): boolean;
|
|
@@ -227,12 +253,19 @@ export interface __DynamicObject$views {
|
|
|
227
253
|
As_IDynamicMetaObjectProvider(): IDynamicMetaObjectProvider$instance;
|
|
228
254
|
}
|
|
229
255
|
|
|
230
|
-
export interface DynamicObject$instance extends IDynamicMetaObjectProvider$instance {}
|
|
231
|
-
|
|
232
256
|
export type DynamicObject = DynamicObject$instance & __DynamicObject$views;
|
|
233
257
|
|
|
234
258
|
|
|
235
259
|
export interface ExpandoObject$instance extends INotifyPropertyChanged {
|
|
260
|
+
readonly __tsonic_type_System_Dynamic_ExpandoObject: never;
|
|
261
|
+
|
|
262
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
263
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
264
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
265
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
266
|
+
readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanged: never;
|
|
267
|
+
readonly __tsonic_iface_System_Dynamic_IDynamicMetaObjectProvider: never;
|
|
268
|
+
|
|
236
269
|
}
|
|
237
270
|
|
|
238
271
|
|
|
@@ -249,12 +282,12 @@ export interface __ExpandoObject$views {
|
|
|
249
282
|
As_IEnumerable(): System_Collections_Internal.IEnumerable$instance;
|
|
250
283
|
}
|
|
251
284
|
|
|
252
|
-
export interface ExpandoObject$instance extends System_Collections_Generic_Internal.IDictionary_2$instance<System_Internal.String, unknown>, System_ComponentModel_Internal.INotifyPropertyChanged$instance, IDynamicMetaObjectProvider$instance {}
|
|
253
|
-
|
|
254
285
|
export type ExpandoObject = ExpandoObject$instance & __ExpandoObject$views;
|
|
255
286
|
|
|
256
287
|
|
|
257
288
|
export interface GetIndexBinder$instance extends DynamicMetaObjectBinder {
|
|
289
|
+
readonly __tsonic_type_System_Dynamic_GetIndexBinder: never;
|
|
290
|
+
|
|
258
291
|
readonly CallInfo: CallInfo;
|
|
259
292
|
readonly ReturnType: Type;
|
|
260
293
|
Bind(target: DynamicMetaObject, args: DynamicMetaObject[]): DynamicMetaObject;
|
|
@@ -271,6 +304,8 @@ export const GetIndexBinder: (abstract new(callInfo: CallInfo) => GetIndexBinder
|
|
|
271
304
|
export type GetIndexBinder = GetIndexBinder$instance;
|
|
272
305
|
|
|
273
306
|
export interface GetMemberBinder$instance extends DynamicMetaObjectBinder {
|
|
307
|
+
readonly __tsonic_type_System_Dynamic_GetMemberBinder: never;
|
|
308
|
+
|
|
274
309
|
readonly IgnoreCase: boolean;
|
|
275
310
|
readonly Name: string;
|
|
276
311
|
readonly ReturnType: Type;
|
|
@@ -288,6 +323,8 @@ export const GetMemberBinder: (abstract new(name: string, ignoreCase: boolean) =
|
|
|
288
323
|
export type GetMemberBinder = GetMemberBinder$instance;
|
|
289
324
|
|
|
290
325
|
export interface InvokeBinder$instance extends DynamicMetaObjectBinder {
|
|
326
|
+
readonly __tsonic_type_System_Dynamic_InvokeBinder: never;
|
|
327
|
+
|
|
291
328
|
readonly CallInfo: CallInfo;
|
|
292
329
|
readonly ReturnType: Type;
|
|
293
330
|
Bind(target: DynamicMetaObject, args: DynamicMetaObject[]): DynamicMetaObject;
|
|
@@ -304,6 +341,8 @@ export const InvokeBinder: (abstract new(callInfo: CallInfo) => InvokeBinder) &
|
|
|
304
341
|
export type InvokeBinder = InvokeBinder$instance;
|
|
305
342
|
|
|
306
343
|
export interface InvokeMemberBinder$instance extends DynamicMetaObjectBinder {
|
|
344
|
+
readonly __tsonic_type_System_Dynamic_InvokeMemberBinder: never;
|
|
345
|
+
|
|
307
346
|
readonly CallInfo: CallInfo;
|
|
308
347
|
readonly IgnoreCase: boolean;
|
|
309
348
|
readonly Name: string;
|
|
@@ -323,6 +362,8 @@ export const InvokeMemberBinder: (abstract new(name: string, ignoreCase: boolean
|
|
|
323
362
|
export type InvokeMemberBinder = InvokeMemberBinder$instance;
|
|
324
363
|
|
|
325
364
|
export interface SetIndexBinder$instance extends DynamicMetaObjectBinder {
|
|
365
|
+
readonly __tsonic_type_System_Dynamic_SetIndexBinder: never;
|
|
366
|
+
|
|
326
367
|
readonly CallInfo: CallInfo;
|
|
327
368
|
readonly ReturnType: Type;
|
|
328
369
|
Bind(target: DynamicMetaObject, args: DynamicMetaObject[]): DynamicMetaObject;
|
|
@@ -339,6 +380,8 @@ export const SetIndexBinder: (abstract new(callInfo: CallInfo) => SetIndexBinder
|
|
|
339
380
|
export type SetIndexBinder = SetIndexBinder$instance;
|
|
340
381
|
|
|
341
382
|
export interface SetMemberBinder$instance extends DynamicMetaObjectBinder {
|
|
383
|
+
readonly __tsonic_type_System_Dynamic_SetMemberBinder: never;
|
|
384
|
+
|
|
342
385
|
readonly IgnoreCase: boolean;
|
|
343
386
|
readonly Name: string;
|
|
344
387
|
readonly ReturnType: Type;
|
|
@@ -356,6 +399,8 @@ export const SetMemberBinder: (abstract new(name: string, ignoreCase: boolean) =
|
|
|
356
399
|
export type SetMemberBinder = SetMemberBinder$instance;
|
|
357
400
|
|
|
358
401
|
export interface UnaryOperationBinder$instance extends DynamicMetaObjectBinder {
|
|
402
|
+
readonly __tsonic_type_System_Dynamic_UnaryOperationBinder: never;
|
|
403
|
+
|
|
359
404
|
readonly Operation: ExpressionType;
|
|
360
405
|
readonly ReturnType: Type;
|
|
361
406
|
Bind(target: DynamicMetaObject, args: DynamicMetaObject[]): DynamicMetaObject;
|
|
@@ -78,6 +78,10 @@ export enum UniversalTagNumber {
|
|
|
78
78
|
|
|
79
79
|
|
|
80
80
|
export interface Asn1Tag$instance {
|
|
81
|
+
readonly __tsonic_type_System_Formats_Asn1_Asn1Tag: never;
|
|
82
|
+
|
|
83
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
84
|
+
|
|
81
85
|
readonly IsConstructed: boolean;
|
|
82
86
|
readonly TagClass: TagClass;
|
|
83
87
|
readonly TagValue: int;
|
|
@@ -126,6 +130,8 @@ export type Asn1Tag = Asn1Tag$instance & __Asn1Tag$views;
|
|
|
126
130
|
|
|
127
131
|
|
|
128
132
|
export interface AsnReaderOptions$instance {
|
|
133
|
+
readonly __tsonic_type_System_Formats_Asn1_AsnReaderOptions: never;
|
|
134
|
+
|
|
129
135
|
SkipSetSortOrderVerification: boolean;
|
|
130
136
|
UtcTimeTwoDigitYearMax: int;
|
|
131
137
|
}
|
|
@@ -138,7 +144,11 @@ export const AsnReaderOptions: {
|
|
|
138
144
|
|
|
139
145
|
export type AsnReaderOptions = AsnReaderOptions$instance;
|
|
140
146
|
|
|
141
|
-
export interface AsnWriter_Scope$instance {
|
|
147
|
+
export interface AsnWriter_Scope$instance extends System_Internal.IDisposable$instance {
|
|
148
|
+
readonly __tsonic_type_System_Formats_Asn1_AsnWriter_Scope: never;
|
|
149
|
+
|
|
150
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
151
|
+
|
|
142
152
|
Dispose(): void;
|
|
143
153
|
}
|
|
144
154
|
|
|
@@ -152,12 +162,14 @@ export interface __AsnWriter_Scope$views {
|
|
|
152
162
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
153
163
|
}
|
|
154
164
|
|
|
155
|
-
export interface AsnWriter_Scope$instance extends System_Internal.IDisposable$instance {}
|
|
156
|
-
|
|
157
165
|
export type AsnWriter_Scope = AsnWriter_Scope$instance & __AsnWriter_Scope$views;
|
|
158
166
|
|
|
159
167
|
|
|
160
168
|
export interface AsnContentException$instance extends Exception {
|
|
169
|
+
readonly __tsonic_type_System_Formats_Asn1_AsnContentException: never;
|
|
170
|
+
|
|
171
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
172
|
+
|
|
161
173
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
162
174
|
}
|
|
163
175
|
|
|
@@ -177,6 +189,8 @@ export type AsnContentException = AsnContentException$instance & __AsnContentExc
|
|
|
177
189
|
|
|
178
190
|
|
|
179
191
|
export interface AsnReader$instance {
|
|
192
|
+
readonly __tsonic_type_System_Formats_Asn1_AsnReader: never;
|
|
193
|
+
|
|
180
194
|
readonly HasData: boolean;
|
|
181
195
|
readonly RuleSet: AsnEncodingRules;
|
|
182
196
|
Clone(): AsnReader;
|
|
@@ -227,6 +241,8 @@ export const AsnReader: {
|
|
|
227
241
|
export type AsnReader = AsnReader$instance;
|
|
228
242
|
|
|
229
243
|
export interface AsnWriter$instance {
|
|
244
|
+
readonly __tsonic_type_System_Formats_Asn1_AsnWriter: never;
|
|
245
|
+
|
|
230
246
|
readonly RuleSet: AsnEncodingRules;
|
|
231
247
|
CopyTo(destination: AsnWriter): void;
|
|
232
248
|
Encode(destination: Span_1<System_Internal.Byte>): int;
|
|
@@ -45,6 +45,8 @@ export enum TarEntryType {
|
|
|
45
45
|
|
|
46
46
|
|
|
47
47
|
export interface GnuTarEntry$instance extends PosixTarEntry {
|
|
48
|
+
readonly __tsonic_type_System_Formats_Tar_GnuTarEntry: never;
|
|
49
|
+
|
|
48
50
|
AccessTime: DateTimeOffset;
|
|
49
51
|
ChangeTime: DateTimeOffset;
|
|
50
52
|
}
|
|
@@ -59,6 +61,8 @@ export const GnuTarEntry: {
|
|
|
59
61
|
export type GnuTarEntry = GnuTarEntry$instance;
|
|
60
62
|
|
|
61
63
|
export interface PaxGlobalExtendedAttributesTarEntry$instance extends PosixTarEntry {
|
|
64
|
+
readonly __tsonic_type_System_Formats_Tar_PaxGlobalExtendedAttributesTarEntry: never;
|
|
65
|
+
|
|
62
66
|
readonly GlobalExtendedAttributes: IReadOnlyDictionary_2<System_Internal.String, System_Internal.String>;
|
|
63
67
|
}
|
|
64
68
|
|
|
@@ -71,6 +75,8 @@ export const PaxGlobalExtendedAttributesTarEntry: {
|
|
|
71
75
|
export type PaxGlobalExtendedAttributesTarEntry = PaxGlobalExtendedAttributesTarEntry$instance;
|
|
72
76
|
|
|
73
77
|
export interface PaxTarEntry$instance extends PosixTarEntry {
|
|
78
|
+
readonly __tsonic_type_System_Formats_Tar_PaxTarEntry: never;
|
|
79
|
+
|
|
74
80
|
readonly ExtendedAttributes: IReadOnlyDictionary_2<System_Internal.String, System_Internal.String>;
|
|
75
81
|
}
|
|
76
82
|
|
|
@@ -85,6 +91,8 @@ export const PaxTarEntry: {
|
|
|
85
91
|
export type PaxTarEntry = PaxTarEntry$instance;
|
|
86
92
|
|
|
87
93
|
export interface PosixTarEntry$instance extends TarEntry {
|
|
94
|
+
readonly __tsonic_type_System_Formats_Tar_PosixTarEntry: never;
|
|
95
|
+
|
|
88
96
|
DeviceMajor: int;
|
|
89
97
|
DeviceMinor: int;
|
|
90
98
|
GroupName: string;
|
|
@@ -99,6 +107,8 @@ export const PosixTarEntry: {
|
|
|
99
107
|
export type PosixTarEntry = PosixTarEntry$instance;
|
|
100
108
|
|
|
101
109
|
export interface TarEntry$instance {
|
|
110
|
+
readonly __tsonic_type_System_Formats_Tar_TarEntry: never;
|
|
111
|
+
|
|
102
112
|
readonly Checksum: int;
|
|
103
113
|
readonly DataOffset: long;
|
|
104
114
|
get DataStream(): Stream | undefined;
|
|
@@ -124,7 +134,12 @@ export const TarEntry: {
|
|
|
124
134
|
|
|
125
135
|
export type TarEntry = TarEntry$instance;
|
|
126
136
|
|
|
127
|
-
export interface TarReader$instance {
|
|
137
|
+
export interface TarReader$instance extends System_Internal.IAsyncDisposable$instance, System_Internal.IDisposable$instance {
|
|
138
|
+
readonly __tsonic_type_System_Formats_Tar_TarReader: never;
|
|
139
|
+
|
|
140
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
141
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
142
|
+
|
|
128
143
|
Dispose(): void;
|
|
129
144
|
DisposeAsync(): ValueTask;
|
|
130
145
|
GetNextEntry(copyData?: boolean): TarEntry | undefined;
|
|
@@ -142,12 +157,15 @@ export interface __TarReader$views {
|
|
|
142
157
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
143
158
|
}
|
|
144
159
|
|
|
145
|
-
export interface TarReader$instance extends System_Internal.IAsyncDisposable$instance, System_Internal.IDisposable$instance {}
|
|
146
|
-
|
|
147
160
|
export type TarReader = TarReader$instance & __TarReader$views;
|
|
148
161
|
|
|
149
162
|
|
|
150
|
-
export interface TarWriter$instance {
|
|
163
|
+
export interface TarWriter$instance extends System_Internal.IAsyncDisposable$instance, System_Internal.IDisposable$instance {
|
|
164
|
+
readonly __tsonic_type_System_Formats_Tar_TarWriter: never;
|
|
165
|
+
|
|
166
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
167
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
168
|
+
|
|
151
169
|
readonly Format: TarEntryFormat;
|
|
152
170
|
Dispose(): void;
|
|
153
171
|
DisposeAsync(): ValueTask;
|
|
@@ -170,12 +188,12 @@ export interface __TarWriter$views {
|
|
|
170
188
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
171
189
|
}
|
|
172
190
|
|
|
173
|
-
export interface TarWriter$instance extends System_Internal.IAsyncDisposable$instance, System_Internal.IDisposable$instance {}
|
|
174
|
-
|
|
175
191
|
export type TarWriter = TarWriter$instance & __TarWriter$views;
|
|
176
192
|
|
|
177
193
|
|
|
178
194
|
export interface UstarTarEntry$instance extends PosixTarEntry {
|
|
195
|
+
readonly __tsonic_type_System_Formats_Tar_UstarTarEntry: never;
|
|
196
|
+
|
|
179
197
|
}
|
|
180
198
|
|
|
181
199
|
|
|
@@ -188,6 +206,8 @@ export const UstarTarEntry: {
|
|
|
188
206
|
export type UstarTarEntry = UstarTarEntry$instance;
|
|
189
207
|
|
|
190
208
|
export interface V7TarEntry$instance extends TarEntry {
|
|
209
|
+
readonly __tsonic_type_System_Formats_Tar_V7TarEntry: never;
|
|
210
|
+
|
|
191
211
|
}
|
|
192
212
|
|
|
193
213
|
|