@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
|
@@ -42,6 +42,8 @@ export enum CSharpBinderFlags {
|
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
export interface CSharpArgumentInfo$instance {
|
|
45
|
+
readonly __tsonic_type_Microsoft_CSharp_RuntimeBinder_CSharpArgumentInfo: never;
|
|
46
|
+
|
|
45
47
|
}
|
|
46
48
|
|
|
47
49
|
|
|
@@ -53,6 +55,10 @@ export const CSharpArgumentInfo: {
|
|
|
53
55
|
export type CSharpArgumentInfo = CSharpArgumentInfo$instance;
|
|
54
56
|
|
|
55
57
|
export interface RuntimeBinderException$instance extends Exception {
|
|
58
|
+
readonly __tsonic_type_Microsoft_CSharp_RuntimeBinder_RuntimeBinderException: never;
|
|
59
|
+
|
|
60
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
61
|
+
|
|
56
62
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
57
63
|
}
|
|
58
64
|
|
|
@@ -72,6 +78,10 @@ export type RuntimeBinderException = RuntimeBinderException$instance & __Runtime
|
|
|
72
78
|
|
|
73
79
|
|
|
74
80
|
export interface RuntimeBinderInternalCompilerException$instance extends Exception {
|
|
81
|
+
readonly __tsonic_type_Microsoft_CSharp_RuntimeBinder_RuntimeBinderInternalCompilerException: never;
|
|
82
|
+
|
|
83
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
84
|
+
|
|
75
85
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
76
86
|
}
|
|
77
87
|
|
|
@@ -205,6 +205,8 @@ export enum VbStrConv {
|
|
|
205
205
|
|
|
206
206
|
|
|
207
207
|
export interface SpcInfo$instance {
|
|
208
|
+
readonly __tsonic_type_Microsoft_VisualBasic_SpcInfo: never;
|
|
209
|
+
|
|
208
210
|
Count: short;
|
|
209
211
|
}
|
|
210
212
|
|
|
@@ -217,6 +219,8 @@ export const SpcInfo: {
|
|
|
217
219
|
export type SpcInfo = SpcInfo$instance;
|
|
218
220
|
|
|
219
221
|
export interface TabInfo$instance {
|
|
222
|
+
readonly __tsonic_type_Microsoft_VisualBasic_TabInfo: never;
|
|
223
|
+
|
|
220
224
|
Column: short;
|
|
221
225
|
}
|
|
222
226
|
|
|
@@ -229,6 +233,12 @@ export const TabInfo: {
|
|
|
229
233
|
export type TabInfo = TabInfo$instance;
|
|
230
234
|
|
|
231
235
|
export interface Collection$instance {
|
|
236
|
+
readonly __tsonic_type_Microsoft_VisualBasic_Collection: never;
|
|
237
|
+
|
|
238
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
239
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
240
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
241
|
+
|
|
232
242
|
readonly Count: int;
|
|
233
243
|
Add(Item: unknown, Key?: string, Before?: unknown, After?: unknown): void;
|
|
234
244
|
Clear(): void;
|
|
@@ -257,6 +267,8 @@ export type Collection = Collection$instance & __Collection$views;
|
|
|
257
267
|
|
|
258
268
|
|
|
259
269
|
export interface ComClassAttribute$instance extends Attribute {
|
|
270
|
+
readonly __tsonic_type_Microsoft_VisualBasic_ComClassAttribute: never;
|
|
271
|
+
|
|
260
272
|
readonly ClassID: string;
|
|
261
273
|
readonly EventID: string;
|
|
262
274
|
readonly InterfaceID: string;
|
|
@@ -275,6 +287,8 @@ export const ComClassAttribute: {
|
|
|
275
287
|
export type ComClassAttribute = ComClassAttribute$instance;
|
|
276
288
|
|
|
277
289
|
export interface Constants$instance {
|
|
290
|
+
readonly __tsonic_type_Microsoft_VisualBasic_Constants: never;
|
|
291
|
+
|
|
278
292
|
}
|
|
279
293
|
|
|
280
294
|
|
|
@@ -387,6 +401,8 @@ export const Constants: {
|
|
|
387
401
|
export type Constants = Constants$instance;
|
|
388
402
|
|
|
389
403
|
export interface ControlChars$instance {
|
|
404
|
+
readonly __tsonic_type_Microsoft_VisualBasic_ControlChars: never;
|
|
405
|
+
|
|
390
406
|
}
|
|
391
407
|
|
|
392
408
|
|
|
@@ -408,6 +424,8 @@ export const ControlChars: {
|
|
|
408
424
|
export type ControlChars = ControlChars$instance;
|
|
409
425
|
|
|
410
426
|
export interface Conversion$instance {
|
|
427
|
+
readonly __tsonic_type_Microsoft_VisualBasic_Conversion: never;
|
|
428
|
+
|
|
411
429
|
}
|
|
412
430
|
|
|
413
431
|
|
|
@@ -458,6 +476,8 @@ export const Conversion: {
|
|
|
458
476
|
export type Conversion = Conversion$instance;
|
|
459
477
|
|
|
460
478
|
export interface DateAndTime$instance {
|
|
479
|
+
readonly __tsonic_type_Microsoft_VisualBasic_DateAndTime: never;
|
|
480
|
+
|
|
461
481
|
}
|
|
462
482
|
|
|
463
483
|
|
|
@@ -493,6 +513,8 @@ export const DateAndTime: {
|
|
|
493
513
|
export type DateAndTime = DateAndTime$instance;
|
|
494
514
|
|
|
495
515
|
export interface ErrObject$instance {
|
|
516
|
+
readonly __tsonic_type_Microsoft_VisualBasic_ErrObject: never;
|
|
517
|
+
|
|
496
518
|
Description: string;
|
|
497
519
|
readonly Erl: int;
|
|
498
520
|
HelpContext: int;
|
|
@@ -513,6 +535,8 @@ export const ErrObject: {
|
|
|
513
535
|
export type ErrObject = ErrObject$instance;
|
|
514
536
|
|
|
515
537
|
export interface FileSystem$instance {
|
|
538
|
+
readonly __tsonic_type_Microsoft_VisualBasic_FileSystem: never;
|
|
539
|
+
|
|
516
540
|
}
|
|
517
541
|
|
|
518
542
|
|
|
@@ -606,6 +630,8 @@ export const FileSystem: {
|
|
|
606
630
|
export type FileSystem = FileSystem$instance;
|
|
607
631
|
|
|
608
632
|
export interface Financial$instance {
|
|
633
|
+
readonly __tsonic_type_Microsoft_VisualBasic_Financial: never;
|
|
634
|
+
|
|
609
635
|
}
|
|
610
636
|
|
|
611
637
|
|
|
@@ -629,6 +655,8 @@ export const Financial: {
|
|
|
629
655
|
export type Financial = Financial$instance;
|
|
630
656
|
|
|
631
657
|
export interface HideModuleNameAttribute$instance extends Attribute {
|
|
658
|
+
readonly __tsonic_type_Microsoft_VisualBasic_HideModuleNameAttribute: never;
|
|
659
|
+
|
|
632
660
|
}
|
|
633
661
|
|
|
634
662
|
|
|
@@ -640,6 +668,8 @@ export const HideModuleNameAttribute: {
|
|
|
640
668
|
export type HideModuleNameAttribute = HideModuleNameAttribute$instance;
|
|
641
669
|
|
|
642
670
|
export interface Information$instance {
|
|
671
|
+
readonly __tsonic_type_Microsoft_VisualBasic_Information: never;
|
|
672
|
+
|
|
643
673
|
}
|
|
644
674
|
|
|
645
675
|
|
|
@@ -667,6 +697,8 @@ export const Information: {
|
|
|
667
697
|
export type Information = Information$instance;
|
|
668
698
|
|
|
669
699
|
export interface Interaction$instance {
|
|
700
|
+
readonly __tsonic_type_Microsoft_VisualBasic_Interaction: never;
|
|
701
|
+
|
|
670
702
|
}
|
|
671
703
|
|
|
672
704
|
|
|
@@ -697,6 +729,8 @@ export const Interaction: {
|
|
|
697
729
|
export type Interaction = Interaction$instance;
|
|
698
730
|
|
|
699
731
|
export interface MyGroupCollectionAttribute$instance extends Attribute {
|
|
732
|
+
readonly __tsonic_type_Microsoft_VisualBasic_MyGroupCollectionAttribute: never;
|
|
733
|
+
|
|
700
734
|
readonly CreateMethod: string;
|
|
701
735
|
readonly DefaultInstanceAlias: string;
|
|
702
736
|
readonly DisposeMethod: string;
|
|
@@ -712,6 +746,8 @@ export const MyGroupCollectionAttribute: {
|
|
|
712
746
|
export type MyGroupCollectionAttribute = MyGroupCollectionAttribute$instance;
|
|
713
747
|
|
|
714
748
|
export interface Strings$instance {
|
|
749
|
+
readonly __tsonic_type_Microsoft_VisualBasic_Strings: never;
|
|
750
|
+
|
|
715
751
|
}
|
|
716
752
|
|
|
717
753
|
|
|
@@ -779,6 +815,8 @@ export const Strings: {
|
|
|
779
815
|
export type Strings = Strings$instance;
|
|
780
816
|
|
|
781
817
|
export interface VBFixedArrayAttribute$instance extends Attribute {
|
|
818
|
+
readonly __tsonic_type_Microsoft_VisualBasic_VBFixedArrayAttribute: never;
|
|
819
|
+
|
|
782
820
|
readonly Bounds: int[];
|
|
783
821
|
readonly Length: int;
|
|
784
822
|
}
|
|
@@ -793,6 +831,8 @@ export const VBFixedArrayAttribute: {
|
|
|
793
831
|
export type VBFixedArrayAttribute = VBFixedArrayAttribute$instance;
|
|
794
832
|
|
|
795
833
|
export interface VBFixedStringAttribute$instance extends Attribute {
|
|
834
|
+
readonly __tsonic_type_Microsoft_VisualBasic_VBFixedStringAttribute: never;
|
|
835
|
+
|
|
796
836
|
readonly Length: int;
|
|
797
837
|
}
|
|
798
838
|
|
|
@@ -805,6 +845,8 @@ export const VBFixedStringAttribute: {
|
|
|
805
845
|
export type VBFixedStringAttribute = VBFixedStringAttribute$instance;
|
|
806
846
|
|
|
807
847
|
export interface VBMath$instance {
|
|
848
|
+
readonly __tsonic_type_Microsoft_VisualBasic_VBMath: never;
|
|
849
|
+
|
|
808
850
|
}
|
|
809
851
|
|
|
810
852
|
|
|
@@ -19,6 +19,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
19
19
|
import type { Array as ClrArray, Attribute, Boolean as ClrBoolean, Byte, Char, DateTime, Decimal, Double, Exception, Int16, Int32, Int64, Object as ClrObject, SByte, Single, String as ClrString, Type, UInt16, UInt32, UInt64, Void } from "../../System/internal/index.js";
|
|
20
20
|
|
|
21
21
|
export interface BooleanType$instance {
|
|
22
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_BooleanType: never;
|
|
23
|
+
|
|
22
24
|
}
|
|
23
25
|
|
|
24
26
|
|
|
@@ -31,6 +33,8 @@ export const BooleanType: {
|
|
|
31
33
|
export type BooleanType = BooleanType$instance;
|
|
32
34
|
|
|
33
35
|
export interface ByteType$instance {
|
|
36
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_ByteType: never;
|
|
37
|
+
|
|
34
38
|
}
|
|
35
39
|
|
|
36
40
|
|
|
@@ -43,6 +47,8 @@ export const ByteType: {
|
|
|
43
47
|
export type ByteType = ByteType$instance;
|
|
44
48
|
|
|
45
49
|
export interface CharArrayType$instance {
|
|
50
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_CharArrayType: never;
|
|
51
|
+
|
|
46
52
|
}
|
|
47
53
|
|
|
48
54
|
|
|
@@ -55,6 +61,8 @@ export const CharArrayType: {
|
|
|
55
61
|
export type CharArrayType = CharArrayType$instance;
|
|
56
62
|
|
|
57
63
|
export interface CharType$instance {
|
|
64
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_CharType: never;
|
|
65
|
+
|
|
58
66
|
}
|
|
59
67
|
|
|
60
68
|
|
|
@@ -67,6 +75,8 @@ export const CharType: {
|
|
|
67
75
|
export type CharType = CharType$instance;
|
|
68
76
|
|
|
69
77
|
export interface Conversions$instance {
|
|
78
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_Conversions: never;
|
|
79
|
+
|
|
70
80
|
}
|
|
71
81
|
|
|
72
82
|
|
|
@@ -130,6 +140,8 @@ export const Conversions: {
|
|
|
130
140
|
export type Conversions = Conversions$instance;
|
|
131
141
|
|
|
132
142
|
export interface DateType$instance {
|
|
143
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_DateType: never;
|
|
144
|
+
|
|
133
145
|
}
|
|
134
146
|
|
|
135
147
|
|
|
@@ -143,6 +155,8 @@ export const DateType: {
|
|
|
143
155
|
export type DateType = DateType$instance;
|
|
144
156
|
|
|
145
157
|
export interface DecimalType$instance {
|
|
158
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_DecimalType: never;
|
|
159
|
+
|
|
146
160
|
}
|
|
147
161
|
|
|
148
162
|
|
|
@@ -159,6 +173,8 @@ export const DecimalType: {
|
|
|
159
173
|
export type DecimalType = DecimalType$instance;
|
|
160
174
|
|
|
161
175
|
export interface DesignerGeneratedAttribute$instance extends Attribute {
|
|
176
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_DesignerGeneratedAttribute: never;
|
|
177
|
+
|
|
162
178
|
}
|
|
163
179
|
|
|
164
180
|
|
|
@@ -170,6 +186,8 @@ export const DesignerGeneratedAttribute: {
|
|
|
170
186
|
export type DesignerGeneratedAttribute = DesignerGeneratedAttribute$instance;
|
|
171
187
|
|
|
172
188
|
export interface DoubleType$instance {
|
|
189
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_DoubleType: never;
|
|
190
|
+
|
|
173
191
|
}
|
|
174
192
|
|
|
175
193
|
|
|
@@ -186,6 +204,10 @@ export const DoubleType: {
|
|
|
186
204
|
export type DoubleType = DoubleType$instance;
|
|
187
205
|
|
|
188
206
|
export interface IncompleteInitialization$instance extends Exception {
|
|
207
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_IncompleteInitialization: never;
|
|
208
|
+
|
|
209
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
210
|
+
|
|
189
211
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
190
212
|
}
|
|
191
213
|
|
|
@@ -203,6 +225,8 @@ export type IncompleteInitialization = IncompleteInitialization$instance & __Inc
|
|
|
203
225
|
|
|
204
226
|
|
|
205
227
|
export interface IntegerType$instance {
|
|
228
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_IntegerType: never;
|
|
229
|
+
|
|
206
230
|
}
|
|
207
231
|
|
|
208
232
|
|
|
@@ -215,6 +239,8 @@ export const IntegerType: {
|
|
|
215
239
|
export type IntegerType = IntegerType$instance;
|
|
216
240
|
|
|
217
241
|
export interface LateBinding$instance {
|
|
242
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_LateBinding: never;
|
|
243
|
+
|
|
218
244
|
}
|
|
219
245
|
|
|
220
246
|
|
|
@@ -232,6 +258,8 @@ export const LateBinding: {
|
|
|
232
258
|
export type LateBinding = LateBinding$instance;
|
|
233
259
|
|
|
234
260
|
export interface LikeOperator$instance {
|
|
261
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_LikeOperator: never;
|
|
262
|
+
|
|
235
263
|
}
|
|
236
264
|
|
|
237
265
|
|
|
@@ -244,6 +272,8 @@ export const LikeOperator: {
|
|
|
244
272
|
export type LikeOperator = LikeOperator$instance;
|
|
245
273
|
|
|
246
274
|
export interface LongType$instance {
|
|
275
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_LongType: never;
|
|
276
|
+
|
|
247
277
|
}
|
|
248
278
|
|
|
249
279
|
|
|
@@ -256,6 +286,8 @@ export const LongType: {
|
|
|
256
286
|
export type LongType = LongType$instance;
|
|
257
287
|
|
|
258
288
|
export interface NewLateBinding$instance {
|
|
289
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_NewLateBinding: never;
|
|
290
|
+
|
|
259
291
|
}
|
|
260
292
|
|
|
261
293
|
|
|
@@ -284,6 +316,8 @@ export const NewLateBinding: {
|
|
|
284
316
|
export type NewLateBinding = NewLateBinding$instance;
|
|
285
317
|
|
|
286
318
|
export interface ObjectFlowControl$instance {
|
|
319
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_ObjectFlowControl: never;
|
|
320
|
+
|
|
287
321
|
}
|
|
288
322
|
|
|
289
323
|
|
|
@@ -295,6 +329,8 @@ export const ObjectFlowControl: {
|
|
|
295
329
|
export type ObjectFlowControl = ObjectFlowControl$instance;
|
|
296
330
|
|
|
297
331
|
export interface ObjectFlowControl_ForLoopControl$instance {
|
|
332
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_ObjectFlowControl_ForLoopControl: never;
|
|
333
|
+
|
|
298
334
|
}
|
|
299
335
|
|
|
300
336
|
|
|
@@ -310,6 +346,8 @@ export const ObjectFlowControl_ForLoopControl: {
|
|
|
310
346
|
export type ObjectFlowControl_ForLoopControl = ObjectFlowControl_ForLoopControl$instance;
|
|
311
347
|
|
|
312
348
|
export interface ObjectType$instance {
|
|
349
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_ObjectType: never;
|
|
350
|
+
|
|
313
351
|
}
|
|
314
352
|
|
|
315
353
|
|
|
@@ -341,6 +379,8 @@ export const ObjectType: {
|
|
|
341
379
|
export type ObjectType = ObjectType$instance;
|
|
342
380
|
|
|
343
381
|
export interface Operators$instance {
|
|
382
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_Operators: never;
|
|
383
|
+
|
|
344
384
|
}
|
|
345
385
|
|
|
346
386
|
|
|
@@ -381,6 +421,8 @@ export const Operators: {
|
|
|
381
421
|
export type Operators = Operators$instance;
|
|
382
422
|
|
|
383
423
|
export interface OptionCompareAttribute$instance extends Attribute {
|
|
424
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_OptionCompareAttribute: never;
|
|
425
|
+
|
|
384
426
|
}
|
|
385
427
|
|
|
386
428
|
|
|
@@ -392,6 +434,8 @@ export const OptionCompareAttribute: {
|
|
|
392
434
|
export type OptionCompareAttribute = OptionCompareAttribute$instance;
|
|
393
435
|
|
|
394
436
|
export interface OptionTextAttribute$instance extends Attribute {
|
|
437
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_OptionTextAttribute: never;
|
|
438
|
+
|
|
395
439
|
}
|
|
396
440
|
|
|
397
441
|
|
|
@@ -403,6 +447,8 @@ export const OptionTextAttribute: {
|
|
|
403
447
|
export type OptionTextAttribute = OptionTextAttribute$instance;
|
|
404
448
|
|
|
405
449
|
export interface ProjectData$instance {
|
|
450
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_ProjectData: never;
|
|
451
|
+
|
|
406
452
|
}
|
|
407
453
|
|
|
408
454
|
|
|
@@ -418,6 +464,8 @@ export const ProjectData: {
|
|
|
418
464
|
export type ProjectData = ProjectData$instance;
|
|
419
465
|
|
|
420
466
|
export interface ShortType$instance {
|
|
467
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_ShortType: never;
|
|
468
|
+
|
|
421
469
|
}
|
|
422
470
|
|
|
423
471
|
|
|
@@ -430,6 +478,8 @@ export const ShortType: {
|
|
|
430
478
|
export type ShortType = ShortType$instance;
|
|
431
479
|
|
|
432
480
|
export interface SingleType$instance {
|
|
481
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_SingleType: never;
|
|
482
|
+
|
|
433
483
|
}
|
|
434
484
|
|
|
435
485
|
|
|
@@ -444,6 +494,8 @@ export const SingleType: {
|
|
|
444
494
|
export type SingleType = SingleType$instance;
|
|
445
495
|
|
|
446
496
|
export interface StandardModuleAttribute$instance extends Attribute {
|
|
497
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_StandardModuleAttribute: never;
|
|
498
|
+
|
|
447
499
|
}
|
|
448
500
|
|
|
449
501
|
|
|
@@ -455,6 +507,8 @@ export const StandardModuleAttribute: {
|
|
|
455
507
|
export type StandardModuleAttribute = StandardModuleAttribute$instance;
|
|
456
508
|
|
|
457
509
|
export interface StaticLocalInitFlag$instance {
|
|
510
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_StaticLocalInitFlag: never;
|
|
511
|
+
|
|
458
512
|
State: short;
|
|
459
513
|
}
|
|
460
514
|
|
|
@@ -467,6 +521,8 @@ export const StaticLocalInitFlag: {
|
|
|
467
521
|
export type StaticLocalInitFlag = StaticLocalInitFlag$instance;
|
|
468
522
|
|
|
469
523
|
export interface StringType$instance {
|
|
524
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_StringType: never;
|
|
525
|
+
|
|
470
526
|
}
|
|
471
527
|
|
|
472
528
|
|
|
@@ -496,6 +552,8 @@ export const StringType: {
|
|
|
496
552
|
export type StringType = StringType$instance;
|
|
497
553
|
|
|
498
554
|
export interface Utils$instance {
|
|
555
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_Utils: never;
|
|
556
|
+
|
|
499
557
|
}
|
|
500
558
|
|
|
501
559
|
|
|
@@ -508,6 +566,8 @@ export const Utils: {
|
|
|
508
566
|
export type Utils = Utils$instance;
|
|
509
567
|
|
|
510
568
|
export interface Versioned$instance {
|
|
569
|
+
readonly __tsonic_type_Microsoft_VisualBasic_CompilerServices_Versioned: never;
|
|
570
|
+
|
|
511
571
|
}
|
|
512
572
|
|
|
513
573
|
|
|
@@ -53,6 +53,8 @@ export enum UIOption {
|
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
export interface FileSystem$instance {
|
|
56
|
+
readonly __tsonic_type_Microsoft_VisualBasic_FileIO_FileSystem: never;
|
|
57
|
+
|
|
56
58
|
}
|
|
57
59
|
|
|
58
60
|
|
|
@@ -119,6 +121,10 @@ export const FileSystem: {
|
|
|
119
121
|
export type FileSystem = FileSystem$instance;
|
|
120
122
|
|
|
121
123
|
export interface MalformedLineException$instance extends Exception {
|
|
124
|
+
readonly __tsonic_type_Microsoft_VisualBasic_FileIO_MalformedLineException: never;
|
|
125
|
+
|
|
126
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
127
|
+
|
|
122
128
|
LineNumber: long;
|
|
123
129
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
124
130
|
ToString(): string;
|
|
@@ -142,6 +148,8 @@ export type MalformedLineException = MalformedLineException$instance & __Malform
|
|
|
142
148
|
|
|
143
149
|
|
|
144
150
|
export interface SpecialDirectories$instance {
|
|
151
|
+
readonly __tsonic_type_Microsoft_VisualBasic_FileIO_SpecialDirectories: never;
|
|
152
|
+
|
|
145
153
|
}
|
|
146
154
|
|
|
147
155
|
|
|
@@ -162,6 +170,10 @@ export const SpecialDirectories: {
|
|
|
162
170
|
export type SpecialDirectories = SpecialDirectories$instance;
|
|
163
171
|
|
|
164
172
|
export interface TextFieldParser$instance {
|
|
173
|
+
readonly __tsonic_type_Microsoft_VisualBasic_FileIO_TextFieldParser: never;
|
|
174
|
+
|
|
175
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
176
|
+
|
|
165
177
|
CommentTokens: string[];
|
|
166
178
|
Delimiters: string[];
|
|
167
179
|
readonly EndOfData: boolean;
|
|
@@ -59,7 +59,11 @@ export enum RegistryView {
|
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
|
|
62
|
-
export interface RegistryKey$instance extends MarshalByRefObject {
|
|
62
|
+
export interface RegistryKey$instance extends MarshalByRefObject, System_Internal.IDisposable$instance {
|
|
63
|
+
readonly __tsonic_type_Microsoft_Win32_RegistryKey: never;
|
|
64
|
+
|
|
65
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
66
|
+
|
|
63
67
|
readonly Handle: SafeRegistryHandle;
|
|
64
68
|
readonly Name: string;
|
|
65
69
|
readonly SubKeyCount: int;
|
|
@@ -114,8 +118,6 @@ export interface __RegistryKey$views {
|
|
|
114
118
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
115
119
|
}
|
|
116
120
|
|
|
117
|
-
export interface RegistryKey$instance extends System_Internal.IDisposable$instance {}
|
|
118
|
-
|
|
119
121
|
export type RegistryKey = RegistryKey$instance & __RegistryKey$views;
|
|
120
122
|
|
|
121
123
|
|
|
@@ -12,6 +12,10 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
12
12
|
import type { Boolean as ClrBoolean, Byte, IDisposable, Int32, IntPtr, Object as ClrObject, ReadOnlySpan_1, Span_1, String as ClrString, Type, UInt32, UInt64, Void } from "../../System/internal/index.js";
|
|
13
13
|
|
|
14
14
|
export interface CriticalHandleMinusOneIsInvalid$instance extends CriticalHandle {
|
|
15
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_CriticalHandleMinusOneIsInvalid: never;
|
|
16
|
+
|
|
17
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
18
|
+
|
|
15
19
|
readonly IsInvalid: boolean;
|
|
16
20
|
Dispose(): void;
|
|
17
21
|
Dispose(disposing: boolean): void;
|
|
@@ -30,6 +34,10 @@ export type CriticalHandleMinusOneIsInvalid = CriticalHandleMinusOneIsInvalid$in
|
|
|
30
34
|
|
|
31
35
|
|
|
32
36
|
export interface CriticalHandleZeroOrMinusOneIsInvalid$instance extends CriticalHandle {
|
|
37
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_CriticalHandleZeroOrMinusOneIsInvalid: never;
|
|
38
|
+
|
|
39
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
40
|
+
|
|
33
41
|
readonly IsInvalid: boolean;
|
|
34
42
|
Dispose(): void;
|
|
35
43
|
Dispose(disposing: boolean): void;
|
|
@@ -48,6 +56,10 @@ export type CriticalHandleZeroOrMinusOneIsInvalid = CriticalHandleZeroOrMinusOne
|
|
|
48
56
|
|
|
49
57
|
|
|
50
58
|
export interface SafeAccessTokenHandle$instance extends SafeHandle {
|
|
59
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeAccessTokenHandle: never;
|
|
60
|
+
|
|
61
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
62
|
+
|
|
51
63
|
readonly IsInvalid: boolean;
|
|
52
64
|
Dispose(): void;
|
|
53
65
|
Dispose(disposing: boolean): void;
|
|
@@ -70,6 +82,10 @@ export type SafeAccessTokenHandle = SafeAccessTokenHandle$instance & __SafeAcces
|
|
|
70
82
|
|
|
71
83
|
|
|
72
84
|
export interface SafeFileHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
|
|
85
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeFileHandle: never;
|
|
86
|
+
|
|
87
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
88
|
+
|
|
73
89
|
IsAsync: boolean;
|
|
74
90
|
readonly IsInvalid: boolean;
|
|
75
91
|
Dispose(): void;
|
|
@@ -92,6 +108,10 @@ export type SafeFileHandle = SafeFileHandle$instance & __SafeFileHandle$views;
|
|
|
92
108
|
|
|
93
109
|
|
|
94
110
|
export interface SafeHandleMinusOneIsInvalid$instance extends SafeHandle {
|
|
111
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeHandleMinusOneIsInvalid: never;
|
|
112
|
+
|
|
113
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
114
|
+
|
|
95
115
|
readonly IsInvalid: boolean;
|
|
96
116
|
Dispose(): void;
|
|
97
117
|
Dispose(disposing: boolean): void;
|
|
@@ -110,6 +130,10 @@ export type SafeHandleMinusOneIsInvalid = SafeHandleMinusOneIsInvalid$instance &
|
|
|
110
130
|
|
|
111
131
|
|
|
112
132
|
export interface SafeHandleZeroOrMinusOneIsInvalid$instance extends SafeHandle {
|
|
133
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeHandleZeroOrMinusOneIsInvalid: never;
|
|
134
|
+
|
|
135
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
136
|
+
|
|
113
137
|
readonly IsInvalid: boolean;
|
|
114
138
|
Dispose(): void;
|
|
115
139
|
Dispose(disposing: boolean): void;
|
|
@@ -128,6 +152,10 @@ export type SafeHandleZeroOrMinusOneIsInvalid = SafeHandleZeroOrMinusOneIsInvali
|
|
|
128
152
|
|
|
129
153
|
|
|
130
154
|
export interface SafeMemoryMappedFileHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
|
|
155
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeMemoryMappedFileHandle: never;
|
|
156
|
+
|
|
157
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
158
|
+
|
|
131
159
|
readonly IsInvalid: boolean;
|
|
132
160
|
Dispose(): void;
|
|
133
161
|
Dispose(disposing: boolean): void;
|
|
@@ -148,6 +176,10 @@ export type SafeMemoryMappedFileHandle = SafeMemoryMappedFileHandle$instance & _
|
|
|
148
176
|
|
|
149
177
|
|
|
150
178
|
export interface SafeMemoryMappedViewHandle$instance extends SafeBuffer {
|
|
179
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeMemoryMappedViewHandle: never;
|
|
180
|
+
|
|
181
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
182
|
+
|
|
151
183
|
Dispose(): void;
|
|
152
184
|
Dispose(disposing: boolean): void;
|
|
153
185
|
ReleaseHandle(): boolean;
|
|
@@ -167,6 +199,10 @@ export type SafeMemoryMappedViewHandle = SafeMemoryMappedViewHandle$instance & _
|
|
|
167
199
|
|
|
168
200
|
|
|
169
201
|
export interface SafeNCryptHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
|
|
202
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeNCryptHandle: never;
|
|
203
|
+
|
|
204
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
205
|
+
|
|
170
206
|
Dispose(): void;
|
|
171
207
|
Dispose(disposing: boolean): void;
|
|
172
208
|
ReleaseHandle(): boolean;
|
|
@@ -186,6 +222,10 @@ export type SafeNCryptHandle = SafeNCryptHandle$instance & __SafeNCryptHandle$vi
|
|
|
186
222
|
|
|
187
223
|
|
|
188
224
|
export interface SafeNCryptKeyHandle$instance extends SafeNCryptHandle$instance {
|
|
225
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeNCryptKeyHandle: never;
|
|
226
|
+
|
|
227
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
228
|
+
|
|
189
229
|
Dispose(): void;
|
|
190
230
|
Dispose(disposing: boolean): void;
|
|
191
231
|
ReleaseNativeHandle(): boolean;
|
|
@@ -206,6 +246,10 @@ export type SafeNCryptKeyHandle = SafeNCryptKeyHandle$instance & __SafeNCryptKey
|
|
|
206
246
|
|
|
207
247
|
|
|
208
248
|
export interface SafeNCryptProviderHandle$instance extends SafeNCryptHandle$instance {
|
|
249
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeNCryptProviderHandle: never;
|
|
250
|
+
|
|
251
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
252
|
+
|
|
209
253
|
Dispose(): void;
|
|
210
254
|
Dispose(disposing: boolean): void;
|
|
211
255
|
ReleaseNativeHandle(): boolean;
|
|
@@ -225,6 +269,10 @@ export type SafeNCryptProviderHandle = SafeNCryptProviderHandle$instance & __Saf
|
|
|
225
269
|
|
|
226
270
|
|
|
227
271
|
export interface SafeNCryptSecretHandle$instance extends SafeNCryptHandle$instance {
|
|
272
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeNCryptSecretHandle: never;
|
|
273
|
+
|
|
274
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
275
|
+
|
|
228
276
|
Dispose(): void;
|
|
229
277
|
Dispose(disposing: boolean): void;
|
|
230
278
|
ReleaseNativeHandle(): boolean;
|
|
@@ -244,6 +292,10 @@ export type SafeNCryptSecretHandle = SafeNCryptSecretHandle$instance & __SafeNCr
|
|
|
244
292
|
|
|
245
293
|
|
|
246
294
|
export interface SafePipeHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
|
|
295
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafePipeHandle: never;
|
|
296
|
+
|
|
297
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
298
|
+
|
|
247
299
|
readonly IsInvalid: boolean;
|
|
248
300
|
Dispose(disposing: boolean): void;
|
|
249
301
|
Dispose(): void;
|
|
@@ -265,6 +317,10 @@ export type SafePipeHandle = SafePipeHandle$instance & __SafePipeHandle$views;
|
|
|
265
317
|
|
|
266
318
|
|
|
267
319
|
export interface SafeProcessHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
|
|
320
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeProcessHandle: never;
|
|
321
|
+
|
|
322
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
323
|
+
|
|
268
324
|
Dispose(): void;
|
|
269
325
|
Dispose(disposing: boolean): void;
|
|
270
326
|
ReleaseHandle(): boolean;
|
|
@@ -285,6 +341,10 @@ export type SafeProcessHandle = SafeProcessHandle$instance & __SafeProcessHandle
|
|
|
285
341
|
|
|
286
342
|
|
|
287
343
|
export interface SafeRegistryHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
|
|
344
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeRegistryHandle: never;
|
|
345
|
+
|
|
346
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
347
|
+
|
|
288
348
|
Dispose(): void;
|
|
289
349
|
Dispose(disposing: boolean): void;
|
|
290
350
|
ReleaseHandle(): boolean;
|
|
@@ -305,6 +365,10 @@ export type SafeRegistryHandle = SafeRegistryHandle$instance & __SafeRegistryHan
|
|
|
305
365
|
|
|
306
366
|
|
|
307
367
|
export interface SafeWaitHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
|
|
368
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeWaitHandle: never;
|
|
369
|
+
|
|
370
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
371
|
+
|
|
308
372
|
Dispose(): void;
|
|
309
373
|
Dispose(disposing: boolean): void;
|
|
310
374
|
ReleaseHandle(): boolean;
|
|
@@ -325,6 +389,10 @@ export type SafeWaitHandle = SafeWaitHandle$instance & __SafeWaitHandle$views;
|
|
|
325
389
|
|
|
326
390
|
|
|
327
391
|
export interface SafeX509ChainHandle$instance extends SafeHandleZeroOrMinusOneIsInvalid$instance {
|
|
392
|
+
readonly __tsonic_type_Microsoft_Win32_SafeHandles_SafeX509ChainHandle: never;
|
|
393
|
+
|
|
394
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
395
|
+
|
|
328
396
|
Dispose(disposing: boolean): void;
|
|
329
397
|
Dispose(): void;
|
|
330
398
|
ReleaseHandle(): boolean;
|