@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
|
@@ -38,12 +38,16 @@ export enum MarshalMode {
|
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
export interface IComExposedClass$instance {
|
|
41
|
+
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_IComExposedClass: never;
|
|
42
|
+
|
|
41
43
|
}
|
|
42
44
|
|
|
43
45
|
|
|
44
46
|
export type IComExposedClass = IComExposedClass$instance;
|
|
45
47
|
|
|
46
48
|
export interface IComExposedDetails$instance {
|
|
49
|
+
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_IComExposedDetails: never;
|
|
50
|
+
|
|
47
51
|
GetComInterfaceEntries(count: int): ptr<ComWrappers_ComInterfaceEntry>;
|
|
48
52
|
}
|
|
49
53
|
|
|
@@ -51,6 +55,8 @@ export interface IComExposedDetails$instance {
|
|
|
51
55
|
export type IComExposedDetails = IComExposedDetails$instance;
|
|
52
56
|
|
|
53
57
|
export interface IIUnknownCacheStrategy$instance {
|
|
58
|
+
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_IIUnknownCacheStrategy: never;
|
|
59
|
+
|
|
54
60
|
Clear(unknownStrategy: IIUnknownStrategy): void;
|
|
55
61
|
ConstructTableInfo(handle: RuntimeTypeHandle, interfaceDetails: IIUnknownDerivedDetails, ptr: ptr<void>): IIUnknownCacheStrategy_TableInfo;
|
|
56
62
|
TryGetTableInfo(handle: RuntimeTypeHandle, info: IIUnknownCacheStrategy_TableInfo): boolean;
|
|
@@ -61,6 +67,8 @@ export interface IIUnknownCacheStrategy$instance {
|
|
|
61
67
|
export type IIUnknownCacheStrategy = IIUnknownCacheStrategy$instance;
|
|
62
68
|
|
|
63
69
|
export interface IIUnknownDerivedDetails$instance {
|
|
70
|
+
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_IIUnknownDerivedDetails: never;
|
|
71
|
+
|
|
64
72
|
readonly Iid: Guid;
|
|
65
73
|
readonly Implementation: Type;
|
|
66
74
|
readonly ManagedVirtualMethodTable: ptr<void>;
|
|
@@ -70,6 +78,8 @@ export interface IIUnknownDerivedDetails$instance {
|
|
|
70
78
|
export type IIUnknownDerivedDetails = IIUnknownDerivedDetails$instance;
|
|
71
79
|
|
|
72
80
|
export interface IIUnknownInterfaceDetailsStrategy$instance {
|
|
81
|
+
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_IIUnknownInterfaceDetailsStrategy: never;
|
|
82
|
+
|
|
73
83
|
GetComExposedTypeDetails(type: RuntimeTypeHandle): IComExposedDetails | undefined;
|
|
74
84
|
GetIUnknownDerivedDetails(type: RuntimeTypeHandle): IIUnknownDerivedDetails | undefined;
|
|
75
85
|
}
|
|
@@ -78,12 +88,16 @@ export interface IIUnknownInterfaceDetailsStrategy$instance {
|
|
|
78
88
|
export type IIUnknownInterfaceDetailsStrategy = IIUnknownInterfaceDetailsStrategy$instance;
|
|
79
89
|
|
|
80
90
|
export interface IIUnknownInterfaceType$instance {
|
|
91
|
+
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_IIUnknownInterfaceType: never;
|
|
92
|
+
|
|
81
93
|
}
|
|
82
94
|
|
|
83
95
|
|
|
84
96
|
export type IIUnknownInterfaceType = IIUnknownInterfaceType$instance;
|
|
85
97
|
|
|
86
98
|
export interface IIUnknownStrategy$instance {
|
|
99
|
+
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_IIUnknownStrategy: never;
|
|
100
|
+
|
|
87
101
|
CreateInstancePointer(unknown: ptr<void>): ptr<void>;
|
|
88
102
|
QueryInterface(instancePtr: ptr<void>, iid: Guid, ppObj: ptr<void>): int;
|
|
89
103
|
Release(instancePtr: ptr<void>): int;
|
|
@@ -93,6 +107,8 @@ export interface IIUnknownStrategy$instance {
|
|
|
93
107
|
export type IIUnknownStrategy = IIUnknownStrategy$instance;
|
|
94
108
|
|
|
95
109
|
export interface IUnmanagedVirtualMethodTableProvider$instance {
|
|
110
|
+
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_IUnmanagedVirtualMethodTableProvider: never;
|
|
111
|
+
|
|
96
112
|
GetVirtualMethodTableInfoForKey(type: Type): VirtualMethodTableInfo;
|
|
97
113
|
}
|
|
98
114
|
|
|
@@ -100,6 +116,8 @@ export interface IUnmanagedVirtualMethodTableProvider$instance {
|
|
|
100
116
|
export type IUnmanagedVirtualMethodTableProvider = IUnmanagedVirtualMethodTableProvider$instance;
|
|
101
117
|
|
|
102
118
|
export interface AnsiStringMarshaller_ManagedToUnmanagedIn$instance {
|
|
119
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_AnsiStringMarshaller_ManagedToUnmanagedIn: never;
|
|
120
|
+
|
|
103
121
|
Free(): void;
|
|
104
122
|
FromManaged(managed: string, buffer: Span_1<System_Internal.Byte>): void;
|
|
105
123
|
ToUnmanaged(): ptr<byte>;
|
|
@@ -115,6 +133,8 @@ export const AnsiStringMarshaller_ManagedToUnmanagedIn: {
|
|
|
115
133
|
export type AnsiStringMarshaller_ManagedToUnmanagedIn = AnsiStringMarshaller_ManagedToUnmanagedIn$instance;
|
|
116
134
|
|
|
117
135
|
export interface ArrayMarshaller_2_ManagedToUnmanagedIn$instance<T, TUnmanagedElement extends unknown> {
|
|
136
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_ArrayMarshaller_2_ManagedToUnmanagedIn: never;
|
|
137
|
+
|
|
118
138
|
Free(): void;
|
|
119
139
|
FromManaged(array: T[], buffer: Span_1<TUnmanagedElement>): void;
|
|
120
140
|
GetManagedValuesSource(): ReadOnlySpan_1<T>;
|
|
@@ -134,6 +154,8 @@ export const ArrayMarshaller_2_ManagedToUnmanagedIn: {
|
|
|
134
154
|
export type ArrayMarshaller_2_ManagedToUnmanagedIn<T, TUnmanagedElement> = ArrayMarshaller_2_ManagedToUnmanagedIn$instance<T, TUnmanagedElement>;
|
|
135
155
|
|
|
136
156
|
export interface BStrStringMarshaller_ManagedToUnmanagedIn$instance {
|
|
157
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_BStrStringMarshaller_ManagedToUnmanagedIn: never;
|
|
158
|
+
|
|
137
159
|
Free(): void;
|
|
138
160
|
FromManaged(managed: string, buffer: Span_1<System_Internal.Byte>): void;
|
|
139
161
|
ToUnmanaged(): ptr<ushort>;
|
|
@@ -148,7 +170,11 @@ export const BStrStringMarshaller_ManagedToUnmanagedIn: {
|
|
|
148
170
|
|
|
149
171
|
export type BStrStringMarshaller_ManagedToUnmanagedIn = BStrStringMarshaller_ManagedToUnmanagedIn$instance;
|
|
150
172
|
|
|
151
|
-
export interface ComVariant$instance {
|
|
173
|
+
export interface ComVariant$instance extends System_Internal.IDisposable$instance {
|
|
174
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_ComVariant: never;
|
|
175
|
+
|
|
176
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
177
|
+
|
|
152
178
|
VarType: VarEnum;
|
|
153
179
|
As<T>(): T | undefined;
|
|
154
180
|
Dispose(): void;
|
|
@@ -168,12 +194,12 @@ export interface __ComVariant$views {
|
|
|
168
194
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
169
195
|
}
|
|
170
196
|
|
|
171
|
-
export interface ComVariant$instance extends System_Internal.IDisposable$instance {}
|
|
172
|
-
|
|
173
197
|
export type ComVariant = ComVariant$instance & __ComVariant$views;
|
|
174
198
|
|
|
175
199
|
|
|
176
200
|
export interface ComVariantMarshaller_RefPropagate$instance {
|
|
201
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_ComVariantMarshaller_RefPropagate: never;
|
|
202
|
+
|
|
177
203
|
Free(): void;
|
|
178
204
|
FromManaged(managed: unknown): void;
|
|
179
205
|
FromUnmanaged(unmanaged: ComVariant): void;
|
|
@@ -190,6 +216,8 @@ export const ComVariantMarshaller_RefPropagate: {
|
|
|
190
216
|
export type ComVariantMarshaller_RefPropagate = ComVariantMarshaller_RefPropagate$instance;
|
|
191
217
|
|
|
192
218
|
export interface CustomMarshallerAttribute_GenericPlaceholder$instance {
|
|
219
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_CustomMarshallerAttribute_GenericPlaceholder: never;
|
|
220
|
+
|
|
193
221
|
}
|
|
194
222
|
|
|
195
223
|
|
|
@@ -201,6 +229,8 @@ export const CustomMarshallerAttribute_GenericPlaceholder: {
|
|
|
201
229
|
export type CustomMarshallerAttribute_GenericPlaceholder = CustomMarshallerAttribute_GenericPlaceholder$instance;
|
|
202
230
|
|
|
203
231
|
export interface IIUnknownCacheStrategy_TableInfo$instance {
|
|
232
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_IIUnknownCacheStrategy_TableInfo: never;
|
|
233
|
+
|
|
204
234
|
ManagedType: RuntimeTypeHandle;
|
|
205
235
|
Table: ptr<void>;
|
|
206
236
|
ThisPtr: ptr<void>;
|
|
@@ -215,6 +245,8 @@ export const IIUnknownCacheStrategy_TableInfo: {
|
|
|
215
245
|
export type IIUnknownCacheStrategy_TableInfo = IIUnknownCacheStrategy_TableInfo$instance;
|
|
216
246
|
|
|
217
247
|
export interface PointerArrayMarshaller_2_ManagedToUnmanagedIn$instance<T extends unknown, TUnmanagedElement extends unknown> {
|
|
248
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_PointerArrayMarshaller_2_ManagedToUnmanagedIn: never;
|
|
249
|
+
|
|
218
250
|
Free(): void;
|
|
219
251
|
FromManaged(array: ptr<T>[], buffer: Span_1<TUnmanagedElement>): void;
|
|
220
252
|
GetManagedValuesSource(): ReadOnlySpan_1<System_Internal.IntPtr>;
|
|
@@ -234,6 +266,8 @@ export const PointerArrayMarshaller_2_ManagedToUnmanagedIn: {
|
|
|
234
266
|
export type PointerArrayMarshaller_2_ManagedToUnmanagedIn<T, TUnmanagedElement> = PointerArrayMarshaller_2_ManagedToUnmanagedIn$instance<T, TUnmanagedElement>;
|
|
235
267
|
|
|
236
268
|
export interface ReadOnlySpanMarshaller_2_ManagedToUnmanagedIn$instance<T, TUnmanagedElement extends unknown> {
|
|
269
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_ReadOnlySpanMarshaller_2_ManagedToUnmanagedIn: never;
|
|
270
|
+
|
|
237
271
|
Free(): void;
|
|
238
272
|
FromManaged(managed: ReadOnlySpan_1<T>, buffer: Span_1<TUnmanagedElement>): void;
|
|
239
273
|
GetManagedValuesSource(): ReadOnlySpan_1<T>;
|
|
@@ -253,6 +287,8 @@ export const ReadOnlySpanMarshaller_2_ManagedToUnmanagedIn: {
|
|
|
253
287
|
export type ReadOnlySpanMarshaller_2_ManagedToUnmanagedIn<T, TUnmanagedElement> = ReadOnlySpanMarshaller_2_ManagedToUnmanagedIn$instance<T, TUnmanagedElement>;
|
|
254
288
|
|
|
255
289
|
export interface ReadOnlySpanMarshaller_2_ManagedToUnmanagedOut$instance<T, TUnmanagedElement extends unknown> {
|
|
290
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_ReadOnlySpanMarshaller_2_ManagedToUnmanagedOut: never;
|
|
291
|
+
|
|
256
292
|
Free(): void;
|
|
257
293
|
FromUnmanaged(unmanaged: ptr<TUnmanagedElement>): void;
|
|
258
294
|
GetManagedValuesDestination(numElements: int): Span_1<T>;
|
|
@@ -269,6 +305,8 @@ export const ReadOnlySpanMarshaller_2_ManagedToUnmanagedOut: {
|
|
|
269
305
|
export type ReadOnlySpanMarshaller_2_ManagedToUnmanagedOut<T, TUnmanagedElement> = ReadOnlySpanMarshaller_2_ManagedToUnmanagedOut$instance<T, TUnmanagedElement>;
|
|
270
306
|
|
|
271
307
|
export interface SafeHandleMarshaller_1_ManagedToUnmanagedIn$instance<T extends SafeHandle> {
|
|
308
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_SafeHandleMarshaller_1_ManagedToUnmanagedIn: never;
|
|
309
|
+
|
|
272
310
|
Free(): void;
|
|
273
311
|
FromManaged(handle: T): void;
|
|
274
312
|
ToUnmanaged(): nint;
|
|
@@ -283,6 +321,8 @@ export const SafeHandleMarshaller_1_ManagedToUnmanagedIn: {
|
|
|
283
321
|
export type SafeHandleMarshaller_1_ManagedToUnmanagedIn<T extends SafeHandle> = SafeHandleMarshaller_1_ManagedToUnmanagedIn$instance<T>;
|
|
284
322
|
|
|
285
323
|
export interface SafeHandleMarshaller_1_ManagedToUnmanagedOut$instance<T extends SafeHandle> {
|
|
324
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_SafeHandleMarshaller_1_ManagedToUnmanagedOut: never;
|
|
325
|
+
|
|
286
326
|
Free(): void;
|
|
287
327
|
FromUnmanaged(value: nint): void;
|
|
288
328
|
ToManaged(): T;
|
|
@@ -297,6 +337,8 @@ export const SafeHandleMarshaller_1_ManagedToUnmanagedOut: {
|
|
|
297
337
|
export type SafeHandleMarshaller_1_ManagedToUnmanagedOut<T extends SafeHandle> = SafeHandleMarshaller_1_ManagedToUnmanagedOut$instance<T>;
|
|
298
338
|
|
|
299
339
|
export interface SafeHandleMarshaller_1_ManagedToUnmanagedRef$instance<T extends SafeHandle> {
|
|
340
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_SafeHandleMarshaller_1_ManagedToUnmanagedRef: never;
|
|
341
|
+
|
|
300
342
|
Free(): void;
|
|
301
343
|
FromManaged(handle: T): void;
|
|
302
344
|
FromUnmanaged(value: nint): void;
|
|
@@ -314,6 +356,8 @@ export const SafeHandleMarshaller_1_ManagedToUnmanagedRef: {
|
|
|
314
356
|
export type SafeHandleMarshaller_1_ManagedToUnmanagedRef<T extends SafeHandle> = SafeHandleMarshaller_1_ManagedToUnmanagedRef$instance<T>;
|
|
315
357
|
|
|
316
358
|
export interface SpanMarshaller_2_ManagedToUnmanagedIn$instance<T, TUnmanagedElement extends unknown> {
|
|
359
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_SpanMarshaller_2_ManagedToUnmanagedIn: never;
|
|
360
|
+
|
|
317
361
|
Free(): void;
|
|
318
362
|
FromManaged(managed: Span_1<T>, buffer: Span_1<TUnmanagedElement>): void;
|
|
319
363
|
GetManagedValuesSource(): ReadOnlySpan_1<T>;
|
|
@@ -333,6 +377,8 @@ export const SpanMarshaller_2_ManagedToUnmanagedIn: {
|
|
|
333
377
|
export type SpanMarshaller_2_ManagedToUnmanagedIn<T, TUnmanagedElement> = SpanMarshaller_2_ManagedToUnmanagedIn$instance<T, TUnmanagedElement>;
|
|
334
378
|
|
|
335
379
|
export interface Utf8StringMarshaller_ManagedToUnmanagedIn$instance {
|
|
380
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_Utf8StringMarshaller_ManagedToUnmanagedIn: never;
|
|
381
|
+
|
|
336
382
|
Free(): void;
|
|
337
383
|
FromManaged(managed: string, buffer: Span_1<System_Internal.Byte>): void;
|
|
338
384
|
ToUnmanaged(): ptr<byte>;
|
|
@@ -348,6 +394,8 @@ export const Utf8StringMarshaller_ManagedToUnmanagedIn: {
|
|
|
348
394
|
export type Utf8StringMarshaller_ManagedToUnmanagedIn = Utf8StringMarshaller_ManagedToUnmanagedIn$instance;
|
|
349
395
|
|
|
350
396
|
export interface VirtualMethodTableInfo$instance {
|
|
397
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_VirtualMethodTableInfo: never;
|
|
398
|
+
|
|
351
399
|
readonly ThisPointer: ptr<void>;
|
|
352
400
|
readonly VirtualMethodTable: ptr<void>;
|
|
353
401
|
Deconstruct(thisPointer: ptr<void>, virtualMethodTable: ptr<void>): void;
|
|
@@ -361,7 +409,11 @@ export const VirtualMethodTableInfo: {
|
|
|
361
409
|
|
|
362
410
|
export type VirtualMethodTableInfo = VirtualMethodTableInfo$instance;
|
|
363
411
|
|
|
364
|
-
export interface ComExposedClassAttribute_1$instance<T extends IComExposedClass> extends Attribute {
|
|
412
|
+
export interface ComExposedClassAttribute_1$instance<T extends IComExposedClass> extends Attribute, IComExposedDetails$instance {
|
|
413
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_ComExposedClassAttribute_1: never;
|
|
414
|
+
|
|
415
|
+
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_IComExposedDetails: never;
|
|
416
|
+
|
|
365
417
|
GetComInterfaceEntries(count: int): ptr<ComWrappers_ComInterfaceEntry>;
|
|
366
418
|
}
|
|
367
419
|
|
|
@@ -375,12 +427,16 @@ export interface __ComExposedClassAttribute_1$views<T extends IComExposedClass>
|
|
|
375
427
|
As_IComExposedDetails(): IComExposedDetails$instance;
|
|
376
428
|
}
|
|
377
429
|
|
|
378
|
-
export interface ComExposedClassAttribute_1$instance<T extends IComExposedClass> extends IComExposedDetails$instance {}
|
|
379
|
-
|
|
380
430
|
export type ComExposedClassAttribute_1<T extends IComExposedClass> = ComExposedClassAttribute_1$instance<T> & __ComExposedClassAttribute_1$views<T>;
|
|
381
431
|
|
|
382
432
|
|
|
383
|
-
export interface ComObject$instance {
|
|
433
|
+
export interface ComObject$instance extends System_Runtime_InteropServices_Internal.IDynamicInterfaceCastable$instance, IUnmanagedVirtualMethodTableProvider$instance {
|
|
434
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_ComObject: never;
|
|
435
|
+
|
|
436
|
+
readonly __tsonic_iface_System_Runtime_InteropServices_IDynamicInterfaceCastable: never;
|
|
437
|
+
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_ComImportInteropInterfaceDetailsStrategy_IComImportAdapter: never;
|
|
438
|
+
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_IUnmanagedVirtualMethodTableProvider: never;
|
|
439
|
+
|
|
384
440
|
Finalize(): void;
|
|
385
441
|
FinalRelease(): void;
|
|
386
442
|
}
|
|
@@ -395,12 +451,12 @@ export interface __ComObject$views {
|
|
|
395
451
|
As_IUnmanagedVirtualMethodTableProvider(): IUnmanagedVirtualMethodTableProvider$instance;
|
|
396
452
|
}
|
|
397
453
|
|
|
398
|
-
export interface ComObject$instance extends System_Runtime_InteropServices_Internal.IDynamicInterfaceCastable$instance, IUnmanagedVirtualMethodTableProvider$instance {}
|
|
399
|
-
|
|
400
454
|
export type ComObject = ComObject$instance & __ComObject$views;
|
|
401
455
|
|
|
402
456
|
|
|
403
457
|
export interface ContiguousCollectionMarshallerAttribute$instance extends Attribute {
|
|
458
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_ContiguousCollectionMarshallerAttribute: never;
|
|
459
|
+
|
|
404
460
|
}
|
|
405
461
|
|
|
406
462
|
|
|
@@ -412,6 +468,8 @@ export const ContiguousCollectionMarshallerAttribute: {
|
|
|
412
468
|
export type ContiguousCollectionMarshallerAttribute = ContiguousCollectionMarshallerAttribute$instance;
|
|
413
469
|
|
|
414
470
|
export interface CustomMarshallerAttribute$instance extends Attribute {
|
|
471
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_CustomMarshallerAttribute: never;
|
|
472
|
+
|
|
415
473
|
readonly ManagedType: Type;
|
|
416
474
|
readonly MarshallerType: Type;
|
|
417
475
|
readonly MarshalMode: MarshalMode;
|
|
@@ -426,6 +484,8 @@ export const CustomMarshallerAttribute: {
|
|
|
426
484
|
export type CustomMarshallerAttribute = CustomMarshallerAttribute$instance;
|
|
427
485
|
|
|
428
486
|
export interface GeneratedComClassAttribute$instance extends Attribute {
|
|
487
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_GeneratedComClassAttribute: never;
|
|
488
|
+
|
|
429
489
|
}
|
|
430
490
|
|
|
431
491
|
|
|
@@ -437,6 +497,8 @@ export const GeneratedComClassAttribute: {
|
|
|
437
497
|
export type GeneratedComClassAttribute = GeneratedComClassAttribute$instance;
|
|
438
498
|
|
|
439
499
|
export interface GeneratedComInterfaceAttribute$instance extends Attribute {
|
|
500
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_GeneratedComInterfaceAttribute: never;
|
|
501
|
+
|
|
440
502
|
get ExceptionToUnmanagedMarshaller(): Type | undefined;
|
|
441
503
|
set ExceptionToUnmanagedMarshaller(value: Type | undefined);
|
|
442
504
|
Options: ComInterfaceOptions;
|
|
@@ -453,7 +515,11 @@ export const GeneratedComInterfaceAttribute: {
|
|
|
453
515
|
|
|
454
516
|
export type GeneratedComInterfaceAttribute = GeneratedComInterfaceAttribute$instance;
|
|
455
517
|
|
|
456
|
-
export interface IUnknownDerivedAttribute_2$instance<T extends IIUnknownInterfaceType, TImpl> extends Attribute {
|
|
518
|
+
export interface IUnknownDerivedAttribute_2$instance<T extends IIUnknownInterfaceType, TImpl> extends Attribute, IIUnknownDerivedDetails$instance {
|
|
519
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_IUnknownDerivedAttribute_2: never;
|
|
520
|
+
|
|
521
|
+
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_IIUnknownDerivedDetails: never;
|
|
522
|
+
|
|
457
523
|
readonly Iid: Guid;
|
|
458
524
|
readonly Implementation: Type;
|
|
459
525
|
readonly ManagedVirtualMethodTable: ptr<void>;
|
|
@@ -469,12 +535,12 @@ export interface __IUnknownDerivedAttribute_2$views<T extends IIUnknownInterface
|
|
|
469
535
|
As_IIUnknownDerivedDetails(): IIUnknownDerivedDetails$instance;
|
|
470
536
|
}
|
|
471
537
|
|
|
472
|
-
export interface IUnknownDerivedAttribute_2$instance<T extends IIUnknownInterfaceType, TImpl> extends IIUnknownDerivedDetails$instance {}
|
|
473
|
-
|
|
474
538
|
export type IUnknownDerivedAttribute_2<T extends IIUnknownInterfaceType, TImpl> = IUnknownDerivedAttribute_2$instance<T, TImpl> & __IUnknownDerivedAttribute_2$views<T, TImpl>;
|
|
475
539
|
|
|
476
540
|
|
|
477
541
|
export interface MarshalUsingAttribute$instance extends Attribute {
|
|
542
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_MarshalUsingAttribute: never;
|
|
543
|
+
|
|
478
544
|
ConstantElementCount: int;
|
|
479
545
|
CountElementName: string;
|
|
480
546
|
ElementIndirectionDepth: int;
|
|
@@ -492,6 +558,8 @@ export const MarshalUsingAttribute: {
|
|
|
492
558
|
export type MarshalUsingAttribute = MarshalUsingAttribute$instance;
|
|
493
559
|
|
|
494
560
|
export interface NativeMarshallingAttribute$instance extends Attribute {
|
|
561
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_NativeMarshallingAttribute: never;
|
|
562
|
+
|
|
495
563
|
readonly NativeType: Type;
|
|
496
564
|
}
|
|
497
565
|
|
|
@@ -504,6 +572,8 @@ export const NativeMarshallingAttribute: {
|
|
|
504
572
|
export type NativeMarshallingAttribute = NativeMarshallingAttribute$instance;
|
|
505
573
|
|
|
506
574
|
export interface StrategyBasedComWrappers$instance extends ComWrappers {
|
|
575
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_StrategyBasedComWrappers: never;
|
|
576
|
+
|
|
507
577
|
ComputeVtables(obj: unknown, flags: CreateComInterfaceFlags, count: int): ptr<ComWrappers_ComInterfaceEntry>;
|
|
508
578
|
CreateCacheStrategy(): IIUnknownCacheStrategy;
|
|
509
579
|
CreateObject(externalComObject: nint, flags: CreateObjectFlags): unknown;
|
|
@@ -29,6 +29,8 @@ export type ObjectiveCMarshal_UnhandledExceptionPropagationHandler = (exception:
|
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
export interface ObjectiveCTrackedTypeAttribute$instance extends Attribute {
|
|
32
|
+
readonly __tsonic_type_System_Runtime_InteropServices_ObjectiveC_ObjectiveCTrackedTypeAttribute: never;
|
|
33
|
+
|
|
32
34
|
}
|
|
33
35
|
|
|
34
36
|
|
|
@@ -13,6 +13,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
13
13
|
import type { Boolean as ClrBoolean, Int32, Object as ClrObject, String as ClrString, Type, ValueType, Void } from "../../System/internal/index.js";
|
|
14
14
|
|
|
15
15
|
export interface SwiftError$instance {
|
|
16
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Swift_SwiftError: never;
|
|
17
|
+
|
|
16
18
|
readonly Value: ptr<void>;
|
|
17
19
|
}
|
|
18
20
|
|
|
@@ -25,6 +27,8 @@ export const SwiftError: {
|
|
|
25
27
|
export type SwiftError = SwiftError$instance;
|
|
26
28
|
|
|
27
29
|
export interface SwiftIndirectResult$instance {
|
|
30
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Swift_SwiftIndirectResult: never;
|
|
31
|
+
|
|
28
32
|
readonly Value: ptr<void>;
|
|
29
33
|
}
|
|
30
34
|
|
|
@@ -37,6 +41,8 @@ export const SwiftIndirectResult: {
|
|
|
37
41
|
export type SwiftIndirectResult = SwiftIndirectResult$instance;
|
|
38
42
|
|
|
39
43
|
export interface SwiftSelf$instance {
|
|
44
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Swift_SwiftSelf: never;
|
|
45
|
+
|
|
40
46
|
readonly Value: ptr<void>;
|
|
41
47
|
}
|
|
42
48
|
|
|
@@ -49,6 +55,8 @@ export const SwiftSelf: {
|
|
|
49
55
|
export type SwiftSelf = SwiftSelf$instance;
|
|
50
56
|
|
|
51
57
|
export interface SwiftSelf_1$instance<T extends unknown> {
|
|
58
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Swift_SwiftSelf_1: never;
|
|
59
|
+
|
|
52
60
|
readonly Value: T;
|
|
53
61
|
}
|
|
54
62
|
|
|
@@ -14,7 +14,20 @@ import type { IAdditionOperators_3, IBitwiseOperators_3, IDivisionOperators_3, I
|
|
|
14
14
|
import * as System_Internal from "../../System/internal/index.js";
|
|
15
15
|
import type { Boolean as ClrBoolean, Byte, Double, IEquatable_1, Int16, Int32, Int64, IntPtr, MidpointRounding, Object as ClrObject, ReadOnlySpan_1, SByte, Single, Span_1, String as ClrString, Type, UInt16, UInt32, UInt64, UIntPtr, ValueTuple_2, ValueType, Void } from "../../System/internal/index.js";
|
|
16
16
|
|
|
17
|
-
export interface Vector128_1$instance<T> extends IAdditionOperators_3<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, IBitwiseOperators_3<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, IDivisionOperators_3<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, IEqualityOperators_3<Vector128_1<T>, Vector128_1<T>, System_Internal.Boolean>, IMultiplyOperators_3<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, IShiftOperators_3<Vector128_1<T>, System_Internal.Int32, Vector128_1<T>>, ISubtractionOperators_3<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, IUnaryNegationOperators_2<Vector128_1<T>, Vector128_1<T>>, IUnaryPlusOperators_2<Vector128_1<T>, Vector128_1<T>> {
|
|
17
|
+
export interface Vector128_1$instance<T> extends IAdditionOperators_3<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, IBitwiseOperators_3<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, IDivisionOperators_3<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, IEqualityOperators_3<Vector128_1<T>, Vector128_1<T>, System_Internal.Boolean>, IMultiplyOperators_3<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, IShiftOperators_3<Vector128_1<T>, System_Internal.Int32, Vector128_1<T>>, ISubtractionOperators_3<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, IUnaryNegationOperators_2<Vector128_1<T>, Vector128_1<T>>, IUnaryPlusOperators_2<Vector128_1<T>, Vector128_1<T>>, System_Numerics_Internal.IAdditionOperators_3$instance<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, System_Numerics_Internal.IBitwiseOperators_3$instance<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, System_Numerics_Internal.IDivisionOperators_3$instance<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, System_Numerics_Internal.IEqualityOperators_3$instance<Vector128_1<T>, Vector128_1<T>, System_Internal.Boolean>, System_Numerics_Internal.IMultiplyOperators_3$instance<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, System_Numerics_Internal.IShiftOperators_3$instance<Vector128_1<T>, System_Internal.Int32, Vector128_1<T>>, System_Numerics_Internal.ISubtractionOperators_3$instance<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, System_Numerics_Internal.IUnaryNegationOperators_2$instance<Vector128_1<T>, Vector128_1<T>>, System_Numerics_Internal.IUnaryPlusOperators_2$instance<Vector128_1<T>, Vector128_1<T>> {
|
|
18
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Vector128_1: never;
|
|
19
|
+
|
|
20
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
21
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
22
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
23
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
24
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
25
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
26
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
27
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
28
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
29
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
30
|
+
|
|
18
31
|
readonly [index: number]: T;
|
|
19
32
|
Equals(obj: unknown): boolean;
|
|
20
33
|
Equals(other: Vector128_1<T>): boolean;
|
|
@@ -41,12 +54,23 @@ export interface __Vector128_1$views<T> {
|
|
|
41
54
|
Equals(other: Vector128_1<T>): boolean;
|
|
42
55
|
}
|
|
43
56
|
|
|
44
|
-
export interface Vector128_1$instance<T> extends System_Numerics_Internal.IAdditionOperators_3$instance<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, System_Numerics_Internal.IBitwiseOperators_3$instance<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, System_Numerics_Internal.IDivisionOperators_3$instance<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, System_Numerics_Internal.IEqualityOperators_3$instance<Vector128_1<T>, Vector128_1<T>, System_Internal.Boolean>, System_Numerics_Internal.IMultiplyOperators_3$instance<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, System_Numerics_Internal.IShiftOperators_3$instance<Vector128_1<T>, System_Internal.Int32, Vector128_1<T>>, System_Numerics_Internal.ISubtractionOperators_3$instance<Vector128_1<T>, Vector128_1<T>, Vector128_1<T>>, System_Numerics_Internal.IUnaryNegationOperators_2$instance<Vector128_1<T>, Vector128_1<T>>, System_Numerics_Internal.IUnaryPlusOperators_2$instance<Vector128_1<T>, Vector128_1<T>> {}
|
|
45
|
-
|
|
46
57
|
export type Vector128_1<T> = Vector128_1$instance<T> & __Vector128_1$views<T>;
|
|
47
58
|
|
|
48
59
|
|
|
49
|
-
export interface Vector256_1$instance<T> extends IAdditionOperators_3<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, IBitwiseOperators_3<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, IDivisionOperators_3<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, IEqualityOperators_3<Vector256_1<T>, Vector256_1<T>, System_Internal.Boolean>, IMultiplyOperators_3<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, IShiftOperators_3<Vector256_1<T>, System_Internal.Int32, Vector256_1<T>>, ISubtractionOperators_3<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, IUnaryNegationOperators_2<Vector256_1<T>, Vector256_1<T>>, IUnaryPlusOperators_2<Vector256_1<T>, Vector256_1<T>> {
|
|
60
|
+
export interface Vector256_1$instance<T> extends IAdditionOperators_3<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, IBitwiseOperators_3<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, IDivisionOperators_3<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, IEqualityOperators_3<Vector256_1<T>, Vector256_1<T>, System_Internal.Boolean>, IMultiplyOperators_3<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, IShiftOperators_3<Vector256_1<T>, System_Internal.Int32, Vector256_1<T>>, ISubtractionOperators_3<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, IUnaryNegationOperators_2<Vector256_1<T>, Vector256_1<T>>, IUnaryPlusOperators_2<Vector256_1<T>, Vector256_1<T>>, System_Numerics_Internal.IAdditionOperators_3$instance<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, System_Numerics_Internal.IBitwiseOperators_3$instance<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, System_Numerics_Internal.IDivisionOperators_3$instance<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, System_Numerics_Internal.IEqualityOperators_3$instance<Vector256_1<T>, Vector256_1<T>, System_Internal.Boolean>, System_Numerics_Internal.IMultiplyOperators_3$instance<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, System_Numerics_Internal.IShiftOperators_3$instance<Vector256_1<T>, System_Internal.Int32, Vector256_1<T>>, System_Numerics_Internal.ISubtractionOperators_3$instance<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, System_Numerics_Internal.IUnaryNegationOperators_2$instance<Vector256_1<T>, Vector256_1<T>>, System_Numerics_Internal.IUnaryPlusOperators_2$instance<Vector256_1<T>, Vector256_1<T>> {
|
|
61
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Vector256_1: never;
|
|
62
|
+
|
|
63
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
64
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
65
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
66
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
67
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
68
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
69
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
70
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
71
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
72
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
73
|
+
|
|
50
74
|
readonly [index: number]: T;
|
|
51
75
|
Equals(obj: unknown): boolean;
|
|
52
76
|
Equals(other: Vector256_1<T>): boolean;
|
|
@@ -73,12 +97,23 @@ export interface __Vector256_1$views<T> {
|
|
|
73
97
|
Equals(other: Vector256_1<T>): boolean;
|
|
74
98
|
}
|
|
75
99
|
|
|
76
|
-
export interface Vector256_1$instance<T> extends System_Numerics_Internal.IAdditionOperators_3$instance<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, System_Numerics_Internal.IBitwiseOperators_3$instance<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, System_Numerics_Internal.IDivisionOperators_3$instance<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, System_Numerics_Internal.IEqualityOperators_3$instance<Vector256_1<T>, Vector256_1<T>, System_Internal.Boolean>, System_Numerics_Internal.IMultiplyOperators_3$instance<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, System_Numerics_Internal.IShiftOperators_3$instance<Vector256_1<T>, System_Internal.Int32, Vector256_1<T>>, System_Numerics_Internal.ISubtractionOperators_3$instance<Vector256_1<T>, Vector256_1<T>, Vector256_1<T>>, System_Numerics_Internal.IUnaryNegationOperators_2$instance<Vector256_1<T>, Vector256_1<T>>, System_Numerics_Internal.IUnaryPlusOperators_2$instance<Vector256_1<T>, Vector256_1<T>> {}
|
|
77
|
-
|
|
78
100
|
export type Vector256_1<T> = Vector256_1$instance<T> & __Vector256_1$views<T>;
|
|
79
101
|
|
|
80
102
|
|
|
81
|
-
export interface Vector512_1$instance<T> extends IAdditionOperators_3<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, IBitwiseOperators_3<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, IDivisionOperators_3<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, IEqualityOperators_3<Vector512_1<T>, Vector512_1<T>, System_Internal.Boolean>, IMultiplyOperators_3<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, IShiftOperators_3<Vector512_1<T>, System_Internal.Int32, Vector512_1<T>>, ISubtractionOperators_3<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, IUnaryNegationOperators_2<Vector512_1<T>, Vector512_1<T>>, IUnaryPlusOperators_2<Vector512_1<T>, Vector512_1<T>> {
|
|
103
|
+
export interface Vector512_1$instance<T> extends IAdditionOperators_3<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, IBitwiseOperators_3<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, IDivisionOperators_3<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, IEqualityOperators_3<Vector512_1<T>, Vector512_1<T>, System_Internal.Boolean>, IMultiplyOperators_3<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, IShiftOperators_3<Vector512_1<T>, System_Internal.Int32, Vector512_1<T>>, ISubtractionOperators_3<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, IUnaryNegationOperators_2<Vector512_1<T>, Vector512_1<T>>, IUnaryPlusOperators_2<Vector512_1<T>, Vector512_1<T>>, System_Numerics_Internal.IAdditionOperators_3$instance<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, System_Numerics_Internal.IBitwiseOperators_3$instance<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, System_Numerics_Internal.IDivisionOperators_3$instance<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, System_Numerics_Internal.IEqualityOperators_3$instance<Vector512_1<T>, Vector512_1<T>, System_Internal.Boolean>, System_Numerics_Internal.IMultiplyOperators_3$instance<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, System_Numerics_Internal.IShiftOperators_3$instance<Vector512_1<T>, System_Internal.Int32, Vector512_1<T>>, System_Numerics_Internal.ISubtractionOperators_3$instance<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, System_Numerics_Internal.IUnaryNegationOperators_2$instance<Vector512_1<T>, Vector512_1<T>>, System_Numerics_Internal.IUnaryPlusOperators_2$instance<Vector512_1<T>, Vector512_1<T>> {
|
|
104
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Vector512_1: never;
|
|
105
|
+
|
|
106
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
107
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
108
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
109
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
110
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
111
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
112
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
113
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
114
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
115
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
116
|
+
|
|
82
117
|
readonly [index: number]: T;
|
|
83
118
|
Equals(obj: unknown): boolean;
|
|
84
119
|
Equals(other: Vector512_1<T>): boolean;
|
|
@@ -105,12 +140,23 @@ export interface __Vector512_1$views<T> {
|
|
|
105
140
|
Equals(other: Vector512_1<T>): boolean;
|
|
106
141
|
}
|
|
107
142
|
|
|
108
|
-
export interface Vector512_1$instance<T> extends System_Numerics_Internal.IAdditionOperators_3$instance<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, System_Numerics_Internal.IBitwiseOperators_3$instance<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, System_Numerics_Internal.IDivisionOperators_3$instance<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, System_Numerics_Internal.IEqualityOperators_3$instance<Vector512_1<T>, Vector512_1<T>, System_Internal.Boolean>, System_Numerics_Internal.IMultiplyOperators_3$instance<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, System_Numerics_Internal.IShiftOperators_3$instance<Vector512_1<T>, System_Internal.Int32, Vector512_1<T>>, System_Numerics_Internal.ISubtractionOperators_3$instance<Vector512_1<T>, Vector512_1<T>, Vector512_1<T>>, System_Numerics_Internal.IUnaryNegationOperators_2$instance<Vector512_1<T>, Vector512_1<T>>, System_Numerics_Internal.IUnaryPlusOperators_2$instance<Vector512_1<T>, Vector512_1<T>> {}
|
|
109
|
-
|
|
110
143
|
export type Vector512_1<T> = Vector512_1$instance<T> & __Vector512_1$views<T>;
|
|
111
144
|
|
|
112
145
|
|
|
113
|
-
export interface Vector64_1$instance<T> extends IAdditionOperators_3<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, IBitwiseOperators_3<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, IDivisionOperators_3<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, IEqualityOperators_3<Vector64_1<T>, Vector64_1<T>, System_Internal.Boolean>, IMultiplyOperators_3<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, IShiftOperators_3<Vector64_1<T>, System_Internal.Int32, Vector64_1<T>>, ISubtractionOperators_3<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, IUnaryNegationOperators_2<Vector64_1<T>, Vector64_1<T>>, IUnaryPlusOperators_2<Vector64_1<T>, Vector64_1<T>> {
|
|
146
|
+
export interface Vector64_1$instance<T> extends IAdditionOperators_3<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, IBitwiseOperators_3<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, IDivisionOperators_3<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, IEqualityOperators_3<Vector64_1<T>, Vector64_1<T>, System_Internal.Boolean>, IMultiplyOperators_3<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, IShiftOperators_3<Vector64_1<T>, System_Internal.Int32, Vector64_1<T>>, ISubtractionOperators_3<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, IUnaryNegationOperators_2<Vector64_1<T>, Vector64_1<T>>, IUnaryPlusOperators_2<Vector64_1<T>, Vector64_1<T>>, System_Numerics_Internal.IAdditionOperators_3$instance<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, System_Numerics_Internal.IBitwiseOperators_3$instance<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, System_Numerics_Internal.IDivisionOperators_3$instance<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, System_Numerics_Internal.IEqualityOperators_3$instance<Vector64_1<T>, Vector64_1<T>, System_Internal.Boolean>, System_Numerics_Internal.IMultiplyOperators_3$instance<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, System_Numerics_Internal.IShiftOperators_3$instance<Vector64_1<T>, System_Internal.Int32, Vector64_1<T>>, System_Numerics_Internal.ISubtractionOperators_3$instance<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, System_Numerics_Internal.IUnaryNegationOperators_2$instance<Vector64_1<T>, Vector64_1<T>>, System_Numerics_Internal.IUnaryPlusOperators_2$instance<Vector64_1<T>, Vector64_1<T>> {
|
|
147
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Vector64_1: never;
|
|
148
|
+
|
|
149
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
150
|
+
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
151
|
+
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
152
|
+
readonly __tsonic_iface_System_Numerics_IDivisionOperators_3: never;
|
|
153
|
+
readonly __tsonic_iface_System_Numerics_IEqualityOperators_3: never;
|
|
154
|
+
readonly __tsonic_iface_System_Numerics_IMultiplyOperators_3: never;
|
|
155
|
+
readonly __tsonic_iface_System_Numerics_IShiftOperators_3: never;
|
|
156
|
+
readonly __tsonic_iface_System_Numerics_ISubtractionOperators_3: never;
|
|
157
|
+
readonly __tsonic_iface_System_Numerics_IUnaryNegationOperators_2: never;
|
|
158
|
+
readonly __tsonic_iface_System_Numerics_IUnaryPlusOperators_2: never;
|
|
159
|
+
|
|
114
160
|
readonly [index: number]: T;
|
|
115
161
|
Equals(obj: unknown): boolean;
|
|
116
162
|
Equals(other: Vector64_1<T>): boolean;
|
|
@@ -137,8 +183,6 @@ export interface __Vector64_1$views<T> {
|
|
|
137
183
|
Equals(other: Vector64_1<T>): boolean;
|
|
138
184
|
}
|
|
139
185
|
|
|
140
|
-
export interface Vector64_1$instance<T> extends System_Numerics_Internal.IAdditionOperators_3$instance<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, System_Numerics_Internal.IBitwiseOperators_3$instance<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, System_Numerics_Internal.IDivisionOperators_3$instance<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, System_Numerics_Internal.IEqualityOperators_3$instance<Vector64_1<T>, Vector64_1<T>, System_Internal.Boolean>, System_Numerics_Internal.IMultiplyOperators_3$instance<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, System_Numerics_Internal.IShiftOperators_3$instance<Vector64_1<T>, System_Internal.Int32, Vector64_1<T>>, System_Numerics_Internal.ISubtractionOperators_3$instance<Vector64_1<T>, Vector64_1<T>, Vector64_1<T>>, System_Numerics_Internal.IUnaryNegationOperators_2$instance<Vector64_1<T>, Vector64_1<T>>, System_Numerics_Internal.IUnaryPlusOperators_2$instance<Vector64_1<T>, Vector64_1<T>> {}
|
|
141
|
-
|
|
142
186
|
export type Vector64_1<T> = Vector64_1$instance<T> & __Vector64_1$views<T>;
|
|
143
187
|
|
|
144
188
|
|