@tsonic/dotnet 10.0.5 → 10.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +6 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +38 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +58 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +8 -0
- package/Microsoft.Win32/internal/index.d.ts +3 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +34 -0
- package/System/internal/index.d.ts +413 -159
- package/System.Buffers/internal/index.d.ts +24 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +4 -0
- package/System.Collections/internal/index.d.ts +35 -21
- package/System.Collections.Concurrent/internal/index.d.ts +17 -3
- package/System.Collections.Frozen/internal/index.d.ts +12 -0
- package/System.Collections.Generic/internal/index.d.ts +121 -33
- package/System.Collections.Immutable/internal/index.d.ts +44 -0
- package/System.Collections.ObjectModel/internal/index.d.ts +20 -6
- package/System.Collections.Specialized/internal/index.d.ts +30 -6
- package/System.ComponentModel/internal/index.d.ts +269 -21
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +73 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +47 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +22 -0
- package/System.Data/internal/index.d.ts +110 -18
- package/System.Data.Common/internal/index.d.ts +64 -30
- package/System.Data.SqlTypes/internal/index.d.ts +58 -48
- package/System.Diagnostics/internal/index.d.ts +143 -9
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +26 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +31 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +8 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +40 -6
- package/System.Drawing/internal/index.d.ts +24 -0
- package/System.Dynamic/internal/index.d.ts +37 -5
- package/System.Formats.Asn1/internal/index.d.ts +13 -3
- package/System.Formats.Tar/internal/index.d.ts +20 -6
- package/System.Globalization/internal/index.d.ts +64 -18
- package/System.IO/internal/index.d.ts +74 -18
- package/System.IO.Compression/internal/index.d.ts +25 -9
- package/System.IO.Enumeration/internal/index.d.ts +6 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +9 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +6 -0
- package/System.IO.Pipelines/internal/index.d.ts +18 -2
- package/System.IO.Pipes/internal/index.d.ts +16 -0
- package/System.Linq/internal/index.d.ts +17 -3
- package/System.Linq.Expressions/internal/index.d.ts +86 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +109 -19
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +50 -0
- package/System.Net.Http.Headers/internal/index.d.ts +78 -60
- package/System.Net.Http.Json/internal/index.d.ts +2 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +31 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +62 -0
- package/System.Net.Quic/internal/index.d.ts +22 -6
- package/System.Net.Security/internal/index.d.ts +27 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +38 -6
- package/System.Net.WebSockets/internal/index.d.ts +23 -3
- package/System.Numerics/internal/index.d.ts +24 -6
- package/System.Reflection/internal/index.d.ts +134 -30
- package/System.Reflection.Emit/internal/index.d.ts +45 -9
- package/System.Reflection.Metadata/internal/index.d.ts +321 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +76 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +37 -3
- package/System.Resources/internal/index.d.ts +16 -0
- package/System.Runtime/internal/index.d.ts +12 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +275 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +174 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +40 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +55 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +57 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +12 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +7 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +75 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +3 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +4 -0
- package/System.Runtime.Versioning/internal/index.d.ts +26 -0
- package/System.Security/internal/index.d.ts +28 -6
- package/System.Security.AccessControl/internal/index.d.ts +94 -0
- package/System.Security.Authentication/internal/index.d.ts +4 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +9 -3
- package/System.Security.Claims/internal/index.d.ts +8 -6
- package/System.Security.Cryptography/internal/index.d.ts +298 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +69 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +4 -0
- package/System.Security.Principal/internal/index.d.ts +19 -5
- package/System.Text/internal/index.d.ts +68 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +32 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +10 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +54 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +23 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +33 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +108 -24
- package/System.Threading.Channels/internal/index.d.ts +18 -0
- package/System.Threading.Tasks/internal/index.d.ts +34 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +32 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +2 -0
- package/System.Timers/internal/index.d.ts +7 -3
- package/System.Transactions/internal/index.d.ts +37 -15
- package/System.Web/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +106 -18
- package/System.Xml.Linq/internal/index.d.ts +41 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +148 -0
- package/System.Xml.Serialization/internal/index.d.ts +116 -0
- package/System.Xml.XPath/internal/index.d.ts +14 -6
- package/System.Xml.Xsl/internal/index.d.ts +16 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +88 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -116,6 +116,8 @@ export interface IUnmanagedVirtualMethodTableProvider$instance {
|
|
|
116
116
|
export type IUnmanagedVirtualMethodTableProvider = IUnmanagedVirtualMethodTableProvider$instance;
|
|
117
117
|
|
|
118
118
|
export interface AnsiStringMarshaller_ManagedToUnmanagedIn$instance {
|
|
119
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_AnsiStringMarshaller_ManagedToUnmanagedIn: never;
|
|
120
|
+
|
|
119
121
|
Free(): void;
|
|
120
122
|
FromManaged(managed: string, buffer: Span_1<System_Internal.Byte>): void;
|
|
121
123
|
ToUnmanaged(): ptr<byte>;
|
|
@@ -131,6 +133,8 @@ export const AnsiStringMarshaller_ManagedToUnmanagedIn: {
|
|
|
131
133
|
export type AnsiStringMarshaller_ManagedToUnmanagedIn = AnsiStringMarshaller_ManagedToUnmanagedIn$instance;
|
|
132
134
|
|
|
133
135
|
export interface ArrayMarshaller_2_ManagedToUnmanagedIn$instance<T, TUnmanagedElement extends unknown> {
|
|
136
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_ArrayMarshaller_2_ManagedToUnmanagedIn: never;
|
|
137
|
+
|
|
134
138
|
Free(): void;
|
|
135
139
|
FromManaged(array: T[], buffer: Span_1<TUnmanagedElement>): void;
|
|
136
140
|
GetManagedValuesSource(): ReadOnlySpan_1<T>;
|
|
@@ -150,6 +154,8 @@ export const ArrayMarshaller_2_ManagedToUnmanagedIn: {
|
|
|
150
154
|
export type ArrayMarshaller_2_ManagedToUnmanagedIn<T, TUnmanagedElement> = ArrayMarshaller_2_ManagedToUnmanagedIn$instance<T, TUnmanagedElement>;
|
|
151
155
|
|
|
152
156
|
export interface BStrStringMarshaller_ManagedToUnmanagedIn$instance {
|
|
157
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_BStrStringMarshaller_ManagedToUnmanagedIn: never;
|
|
158
|
+
|
|
153
159
|
Free(): void;
|
|
154
160
|
FromManaged(managed: string, buffer: Span_1<System_Internal.Byte>): void;
|
|
155
161
|
ToUnmanaged(): ptr<ushort>;
|
|
@@ -164,7 +170,9 @@ export const BStrStringMarshaller_ManagedToUnmanagedIn: {
|
|
|
164
170
|
|
|
165
171
|
export type BStrStringMarshaller_ManagedToUnmanagedIn = BStrStringMarshaller_ManagedToUnmanagedIn$instance;
|
|
166
172
|
|
|
167
|
-
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
|
+
|
|
168
176
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
169
177
|
|
|
170
178
|
VarType: VarEnum;
|
|
@@ -186,12 +194,12 @@ export interface __ComVariant$views {
|
|
|
186
194
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
187
195
|
}
|
|
188
196
|
|
|
189
|
-
export interface ComVariant$instance extends System_Internal.IDisposable$instance {}
|
|
190
|
-
|
|
191
197
|
export type ComVariant = ComVariant$instance & __ComVariant$views;
|
|
192
198
|
|
|
193
199
|
|
|
194
200
|
export interface ComVariantMarshaller_RefPropagate$instance {
|
|
201
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_ComVariantMarshaller_RefPropagate: never;
|
|
202
|
+
|
|
195
203
|
Free(): void;
|
|
196
204
|
FromManaged(managed: unknown): void;
|
|
197
205
|
FromUnmanaged(unmanaged: ComVariant): void;
|
|
@@ -208,6 +216,8 @@ export const ComVariantMarshaller_RefPropagate: {
|
|
|
208
216
|
export type ComVariantMarshaller_RefPropagate = ComVariantMarshaller_RefPropagate$instance;
|
|
209
217
|
|
|
210
218
|
export interface CustomMarshallerAttribute_GenericPlaceholder$instance {
|
|
219
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_CustomMarshallerAttribute_GenericPlaceholder: never;
|
|
220
|
+
|
|
211
221
|
}
|
|
212
222
|
|
|
213
223
|
|
|
@@ -219,6 +229,8 @@ export const CustomMarshallerAttribute_GenericPlaceholder: {
|
|
|
219
229
|
export type CustomMarshallerAttribute_GenericPlaceholder = CustomMarshallerAttribute_GenericPlaceholder$instance;
|
|
220
230
|
|
|
221
231
|
export interface IIUnknownCacheStrategy_TableInfo$instance {
|
|
232
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_IIUnknownCacheStrategy_TableInfo: never;
|
|
233
|
+
|
|
222
234
|
ManagedType: RuntimeTypeHandle;
|
|
223
235
|
Table: ptr<void>;
|
|
224
236
|
ThisPtr: ptr<void>;
|
|
@@ -233,6 +245,8 @@ export const IIUnknownCacheStrategy_TableInfo: {
|
|
|
233
245
|
export type IIUnknownCacheStrategy_TableInfo = IIUnknownCacheStrategy_TableInfo$instance;
|
|
234
246
|
|
|
235
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
|
+
|
|
236
250
|
Free(): void;
|
|
237
251
|
FromManaged(array: ptr<T>[], buffer: Span_1<TUnmanagedElement>): void;
|
|
238
252
|
GetManagedValuesSource(): ReadOnlySpan_1<System_Internal.IntPtr>;
|
|
@@ -252,6 +266,8 @@ export const PointerArrayMarshaller_2_ManagedToUnmanagedIn: {
|
|
|
252
266
|
export type PointerArrayMarshaller_2_ManagedToUnmanagedIn<T, TUnmanagedElement> = PointerArrayMarshaller_2_ManagedToUnmanagedIn$instance<T, TUnmanagedElement>;
|
|
253
267
|
|
|
254
268
|
export interface ReadOnlySpanMarshaller_2_ManagedToUnmanagedIn$instance<T, TUnmanagedElement extends unknown> {
|
|
269
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_ReadOnlySpanMarshaller_2_ManagedToUnmanagedIn: never;
|
|
270
|
+
|
|
255
271
|
Free(): void;
|
|
256
272
|
FromManaged(managed: ReadOnlySpan_1<T>, buffer: Span_1<TUnmanagedElement>): void;
|
|
257
273
|
GetManagedValuesSource(): ReadOnlySpan_1<T>;
|
|
@@ -271,6 +287,8 @@ export const ReadOnlySpanMarshaller_2_ManagedToUnmanagedIn: {
|
|
|
271
287
|
export type ReadOnlySpanMarshaller_2_ManagedToUnmanagedIn<T, TUnmanagedElement> = ReadOnlySpanMarshaller_2_ManagedToUnmanagedIn$instance<T, TUnmanagedElement>;
|
|
272
288
|
|
|
273
289
|
export interface ReadOnlySpanMarshaller_2_ManagedToUnmanagedOut$instance<T, TUnmanagedElement extends unknown> {
|
|
290
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_ReadOnlySpanMarshaller_2_ManagedToUnmanagedOut: never;
|
|
291
|
+
|
|
274
292
|
Free(): void;
|
|
275
293
|
FromUnmanaged(unmanaged: ptr<TUnmanagedElement>): void;
|
|
276
294
|
GetManagedValuesDestination(numElements: int): Span_1<T>;
|
|
@@ -287,6 +305,8 @@ export const ReadOnlySpanMarshaller_2_ManagedToUnmanagedOut: {
|
|
|
287
305
|
export type ReadOnlySpanMarshaller_2_ManagedToUnmanagedOut<T, TUnmanagedElement> = ReadOnlySpanMarshaller_2_ManagedToUnmanagedOut$instance<T, TUnmanagedElement>;
|
|
288
306
|
|
|
289
307
|
export interface SafeHandleMarshaller_1_ManagedToUnmanagedIn$instance<T extends SafeHandle> {
|
|
308
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_SafeHandleMarshaller_1_ManagedToUnmanagedIn: never;
|
|
309
|
+
|
|
290
310
|
Free(): void;
|
|
291
311
|
FromManaged(handle: T): void;
|
|
292
312
|
ToUnmanaged(): nint;
|
|
@@ -301,6 +321,8 @@ export const SafeHandleMarshaller_1_ManagedToUnmanagedIn: {
|
|
|
301
321
|
export type SafeHandleMarshaller_1_ManagedToUnmanagedIn<T extends SafeHandle> = SafeHandleMarshaller_1_ManagedToUnmanagedIn$instance<T>;
|
|
302
322
|
|
|
303
323
|
export interface SafeHandleMarshaller_1_ManagedToUnmanagedOut$instance<T extends SafeHandle> {
|
|
324
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_SafeHandleMarshaller_1_ManagedToUnmanagedOut: never;
|
|
325
|
+
|
|
304
326
|
Free(): void;
|
|
305
327
|
FromUnmanaged(value: nint): void;
|
|
306
328
|
ToManaged(): T;
|
|
@@ -315,6 +337,8 @@ export const SafeHandleMarshaller_1_ManagedToUnmanagedOut: {
|
|
|
315
337
|
export type SafeHandleMarshaller_1_ManagedToUnmanagedOut<T extends SafeHandle> = SafeHandleMarshaller_1_ManagedToUnmanagedOut$instance<T>;
|
|
316
338
|
|
|
317
339
|
export interface SafeHandleMarshaller_1_ManagedToUnmanagedRef$instance<T extends SafeHandle> {
|
|
340
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_SafeHandleMarshaller_1_ManagedToUnmanagedRef: never;
|
|
341
|
+
|
|
318
342
|
Free(): void;
|
|
319
343
|
FromManaged(handle: T): void;
|
|
320
344
|
FromUnmanaged(value: nint): void;
|
|
@@ -332,6 +356,8 @@ export const SafeHandleMarshaller_1_ManagedToUnmanagedRef: {
|
|
|
332
356
|
export type SafeHandleMarshaller_1_ManagedToUnmanagedRef<T extends SafeHandle> = SafeHandleMarshaller_1_ManagedToUnmanagedRef$instance<T>;
|
|
333
357
|
|
|
334
358
|
export interface SpanMarshaller_2_ManagedToUnmanagedIn$instance<T, TUnmanagedElement extends unknown> {
|
|
359
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_SpanMarshaller_2_ManagedToUnmanagedIn: never;
|
|
360
|
+
|
|
335
361
|
Free(): void;
|
|
336
362
|
FromManaged(managed: Span_1<T>, buffer: Span_1<TUnmanagedElement>): void;
|
|
337
363
|
GetManagedValuesSource(): ReadOnlySpan_1<T>;
|
|
@@ -351,6 +377,8 @@ export const SpanMarshaller_2_ManagedToUnmanagedIn: {
|
|
|
351
377
|
export type SpanMarshaller_2_ManagedToUnmanagedIn<T, TUnmanagedElement> = SpanMarshaller_2_ManagedToUnmanagedIn$instance<T, TUnmanagedElement>;
|
|
352
378
|
|
|
353
379
|
export interface Utf8StringMarshaller_ManagedToUnmanagedIn$instance {
|
|
380
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_Utf8StringMarshaller_ManagedToUnmanagedIn: never;
|
|
381
|
+
|
|
354
382
|
Free(): void;
|
|
355
383
|
FromManaged(managed: string, buffer: Span_1<System_Internal.Byte>): void;
|
|
356
384
|
ToUnmanaged(): ptr<byte>;
|
|
@@ -366,6 +394,8 @@ export const Utf8StringMarshaller_ManagedToUnmanagedIn: {
|
|
|
366
394
|
export type Utf8StringMarshaller_ManagedToUnmanagedIn = Utf8StringMarshaller_ManagedToUnmanagedIn$instance;
|
|
367
395
|
|
|
368
396
|
export interface VirtualMethodTableInfo$instance {
|
|
397
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_VirtualMethodTableInfo: never;
|
|
398
|
+
|
|
369
399
|
readonly ThisPointer: ptr<void>;
|
|
370
400
|
readonly VirtualMethodTable: ptr<void>;
|
|
371
401
|
Deconstruct(thisPointer: ptr<void>, virtualMethodTable: ptr<void>): void;
|
|
@@ -379,7 +409,9 @@ export const VirtualMethodTableInfo: {
|
|
|
379
409
|
|
|
380
410
|
export type VirtualMethodTableInfo = VirtualMethodTableInfo$instance;
|
|
381
411
|
|
|
382
|
-
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
|
+
|
|
383
415
|
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_IComExposedDetails: never;
|
|
384
416
|
|
|
385
417
|
GetComInterfaceEntries(count: int): ptr<ComWrappers_ComInterfaceEntry>;
|
|
@@ -395,13 +427,14 @@ export interface __ComExposedClassAttribute_1$views<T extends IComExposedClass>
|
|
|
395
427
|
As_IComExposedDetails(): IComExposedDetails$instance;
|
|
396
428
|
}
|
|
397
429
|
|
|
398
|
-
export interface ComExposedClassAttribute_1$instance<T extends IComExposedClass> extends IComExposedDetails$instance {}
|
|
399
|
-
|
|
400
430
|
export type ComExposedClassAttribute_1<T extends IComExposedClass> = ComExposedClassAttribute_1$instance<T> & __ComExposedClassAttribute_1$views<T>;
|
|
401
431
|
|
|
402
432
|
|
|
403
|
-
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
|
+
|
|
404
436
|
readonly __tsonic_iface_System_Runtime_InteropServices_IDynamicInterfaceCastable: never;
|
|
437
|
+
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_ComImportInteropInterfaceDetailsStrategy_IComImportAdapter: never;
|
|
405
438
|
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_IUnmanagedVirtualMethodTableProvider: never;
|
|
406
439
|
|
|
407
440
|
Finalize(): void;
|
|
@@ -418,12 +451,12 @@ export interface __ComObject$views {
|
|
|
418
451
|
As_IUnmanagedVirtualMethodTableProvider(): IUnmanagedVirtualMethodTableProvider$instance;
|
|
419
452
|
}
|
|
420
453
|
|
|
421
|
-
export interface ComObject$instance extends System_Runtime_InteropServices_Internal.IDynamicInterfaceCastable$instance, IUnmanagedVirtualMethodTableProvider$instance {}
|
|
422
|
-
|
|
423
454
|
export type ComObject = ComObject$instance & __ComObject$views;
|
|
424
455
|
|
|
425
456
|
|
|
426
457
|
export interface ContiguousCollectionMarshallerAttribute$instance extends Attribute {
|
|
458
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_ContiguousCollectionMarshallerAttribute: never;
|
|
459
|
+
|
|
427
460
|
}
|
|
428
461
|
|
|
429
462
|
|
|
@@ -435,6 +468,8 @@ export const ContiguousCollectionMarshallerAttribute: {
|
|
|
435
468
|
export type ContiguousCollectionMarshallerAttribute = ContiguousCollectionMarshallerAttribute$instance;
|
|
436
469
|
|
|
437
470
|
export interface CustomMarshallerAttribute$instance extends Attribute {
|
|
471
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_CustomMarshallerAttribute: never;
|
|
472
|
+
|
|
438
473
|
readonly ManagedType: Type;
|
|
439
474
|
readonly MarshallerType: Type;
|
|
440
475
|
readonly MarshalMode: MarshalMode;
|
|
@@ -449,6 +484,8 @@ export const CustomMarshallerAttribute: {
|
|
|
449
484
|
export type CustomMarshallerAttribute = CustomMarshallerAttribute$instance;
|
|
450
485
|
|
|
451
486
|
export interface GeneratedComClassAttribute$instance extends Attribute {
|
|
487
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_GeneratedComClassAttribute: never;
|
|
488
|
+
|
|
452
489
|
}
|
|
453
490
|
|
|
454
491
|
|
|
@@ -460,6 +497,8 @@ export const GeneratedComClassAttribute: {
|
|
|
460
497
|
export type GeneratedComClassAttribute = GeneratedComClassAttribute$instance;
|
|
461
498
|
|
|
462
499
|
export interface GeneratedComInterfaceAttribute$instance extends Attribute {
|
|
500
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_GeneratedComInterfaceAttribute: never;
|
|
501
|
+
|
|
463
502
|
get ExceptionToUnmanagedMarshaller(): Type | undefined;
|
|
464
503
|
set ExceptionToUnmanagedMarshaller(value: Type | undefined);
|
|
465
504
|
Options: ComInterfaceOptions;
|
|
@@ -476,7 +515,9 @@ export const GeneratedComInterfaceAttribute: {
|
|
|
476
515
|
|
|
477
516
|
export type GeneratedComInterfaceAttribute = GeneratedComInterfaceAttribute$instance;
|
|
478
517
|
|
|
479
|
-
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
|
+
|
|
480
521
|
readonly __tsonic_iface_System_Runtime_InteropServices_Marshalling_IIUnknownDerivedDetails: never;
|
|
481
522
|
|
|
482
523
|
readonly Iid: Guid;
|
|
@@ -494,12 +535,12 @@ export interface __IUnknownDerivedAttribute_2$views<T extends IIUnknownInterface
|
|
|
494
535
|
As_IIUnknownDerivedDetails(): IIUnknownDerivedDetails$instance;
|
|
495
536
|
}
|
|
496
537
|
|
|
497
|
-
export interface IUnknownDerivedAttribute_2$instance<T extends IIUnknownInterfaceType, TImpl> extends IIUnknownDerivedDetails$instance {}
|
|
498
|
-
|
|
499
538
|
export type IUnknownDerivedAttribute_2<T extends IIUnknownInterfaceType, TImpl> = IUnknownDerivedAttribute_2$instance<T, TImpl> & __IUnknownDerivedAttribute_2$views<T, TImpl>;
|
|
500
539
|
|
|
501
540
|
|
|
502
541
|
export interface MarshalUsingAttribute$instance extends Attribute {
|
|
542
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_MarshalUsingAttribute: never;
|
|
543
|
+
|
|
503
544
|
ConstantElementCount: int;
|
|
504
545
|
CountElementName: string;
|
|
505
546
|
ElementIndirectionDepth: int;
|
|
@@ -517,6 +558,8 @@ export const MarshalUsingAttribute: {
|
|
|
517
558
|
export type MarshalUsingAttribute = MarshalUsingAttribute$instance;
|
|
518
559
|
|
|
519
560
|
export interface NativeMarshallingAttribute$instance extends Attribute {
|
|
561
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_NativeMarshallingAttribute: never;
|
|
562
|
+
|
|
520
563
|
readonly NativeType: Type;
|
|
521
564
|
}
|
|
522
565
|
|
|
@@ -529,6 +572,8 @@ export const NativeMarshallingAttribute: {
|
|
|
529
572
|
export type NativeMarshallingAttribute = NativeMarshallingAttribute$instance;
|
|
530
573
|
|
|
531
574
|
export interface StrategyBasedComWrappers$instance extends ComWrappers {
|
|
575
|
+
readonly __tsonic_type_System_Runtime_InteropServices_Marshalling_StrategyBasedComWrappers: never;
|
|
576
|
+
|
|
532
577
|
ComputeVtables(obj: unknown, flags: CreateComInterfaceFlags, count: int): ptr<ComWrappers_ComInterfaceEntry>;
|
|
533
578
|
CreateCacheStrategy(): IIUnknownCacheStrategy;
|
|
534
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,9 @@ 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
|
+
|
|
18
20
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
19
21
|
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
20
22
|
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
@@ -52,12 +54,12 @@ export interface __Vector128_1$views<T> {
|
|
|
52
54
|
Equals(other: Vector128_1<T>): boolean;
|
|
53
55
|
}
|
|
54
56
|
|
|
55
|
-
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>> {}
|
|
56
|
-
|
|
57
57
|
export type Vector128_1<T> = Vector128_1$instance<T> & __Vector128_1$views<T>;
|
|
58
58
|
|
|
59
59
|
|
|
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>> {
|
|
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
|
+
|
|
61
63
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
62
64
|
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
63
65
|
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
@@ -95,12 +97,12 @@ export interface __Vector256_1$views<T> {
|
|
|
95
97
|
Equals(other: Vector256_1<T>): boolean;
|
|
96
98
|
}
|
|
97
99
|
|
|
98
|
-
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>> {}
|
|
99
|
-
|
|
100
100
|
export type Vector256_1<T> = Vector256_1$instance<T> & __Vector256_1$views<T>;
|
|
101
101
|
|
|
102
102
|
|
|
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>> {
|
|
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
|
+
|
|
104
106
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
105
107
|
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
106
108
|
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
@@ -138,12 +140,12 @@ export interface __Vector512_1$views<T> {
|
|
|
138
140
|
Equals(other: Vector512_1<T>): boolean;
|
|
139
141
|
}
|
|
140
142
|
|
|
141
|
-
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>> {}
|
|
142
|
-
|
|
143
143
|
export type Vector512_1<T> = Vector512_1$instance<T> & __Vector512_1$views<T>;
|
|
144
144
|
|
|
145
145
|
|
|
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>> {
|
|
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
|
+
|
|
147
149
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
148
150
|
readonly __tsonic_iface_System_Numerics_IAdditionOperators_3: never;
|
|
149
151
|
readonly __tsonic_iface_System_Numerics_IBitwiseOperators_3: never;
|
|
@@ -181,8 +183,6 @@ export interface __Vector64_1$views<T> {
|
|
|
181
183
|
Equals(other: Vector64_1<T>): boolean;
|
|
182
184
|
}
|
|
183
185
|
|
|
184
|
-
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>> {}
|
|
185
|
-
|
|
186
186
|
export type Vector64_1<T> = Vector64_1$instance<T> & __Vector64_1$views<T>;
|
|
187
187
|
|
|
188
188
|
|
|
@@ -52,6 +52,8 @@ export enum SvePrefetchType {
|
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
export interface AdvSimd$instance {
|
|
55
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_AdvSimd: never;
|
|
56
|
+
|
|
55
57
|
}
|
|
56
58
|
|
|
57
59
|
|
|
@@ -1833,6 +1835,8 @@ export const AdvSimd: {
|
|
|
1833
1835
|
export type AdvSimd = AdvSimd$instance;
|
|
1834
1836
|
|
|
1835
1837
|
export interface AdvSimd_Arm64$instance {
|
|
1838
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_AdvSimd_Arm64: never;
|
|
1839
|
+
|
|
1836
1840
|
}
|
|
1837
1841
|
|
|
1838
1842
|
|
|
@@ -2700,6 +2704,8 @@ export const AdvSimd_Arm64: {
|
|
|
2700
2704
|
export type AdvSimd_Arm64 = AdvSimd_Arm64$instance;
|
|
2701
2705
|
|
|
2702
2706
|
export interface Aes$instance {
|
|
2707
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Aes: never;
|
|
2708
|
+
|
|
2703
2709
|
}
|
|
2704
2710
|
|
|
2705
2711
|
|
|
@@ -2719,6 +2725,8 @@ export const Aes: {
|
|
|
2719
2725
|
export type Aes = Aes$instance;
|
|
2720
2726
|
|
|
2721
2727
|
export interface Aes_Arm64$instance {
|
|
2728
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Aes_Arm64: never;
|
|
2729
|
+
|
|
2722
2730
|
}
|
|
2723
2731
|
|
|
2724
2732
|
|
|
@@ -2730,6 +2738,8 @@ export const Aes_Arm64: {
|
|
|
2730
2738
|
export type Aes_Arm64 = Aes_Arm64$instance;
|
|
2731
2739
|
|
|
2732
2740
|
export interface ArmBase$instance {
|
|
2741
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_ArmBase: never;
|
|
2742
|
+
|
|
2733
2743
|
}
|
|
2734
2744
|
|
|
2735
2745
|
|
|
@@ -2746,6 +2756,8 @@ export const ArmBase: {
|
|
|
2746
2756
|
export type ArmBase = ArmBase$instance;
|
|
2747
2757
|
|
|
2748
2758
|
export interface ArmBase_Arm64$instance {
|
|
2759
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_ArmBase_Arm64: never;
|
|
2760
|
+
|
|
2749
2761
|
}
|
|
2750
2762
|
|
|
2751
2763
|
|
|
@@ -2765,6 +2777,8 @@ export const ArmBase_Arm64: {
|
|
|
2765
2777
|
export type ArmBase_Arm64 = ArmBase_Arm64$instance;
|
|
2766
2778
|
|
|
2767
2779
|
export interface Crc32$instance {
|
|
2780
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Crc32: never;
|
|
2781
|
+
|
|
2768
2782
|
}
|
|
2769
2783
|
|
|
2770
2784
|
|
|
@@ -2782,6 +2796,8 @@ export const Crc32: {
|
|
|
2782
2796
|
export type Crc32 = Crc32$instance;
|
|
2783
2797
|
|
|
2784
2798
|
export interface Crc32_Arm64$instance {
|
|
2799
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Crc32_Arm64: never;
|
|
2800
|
+
|
|
2785
2801
|
}
|
|
2786
2802
|
|
|
2787
2803
|
|
|
@@ -2795,6 +2811,8 @@ export const Crc32_Arm64: {
|
|
|
2795
2811
|
export type Crc32_Arm64 = Crc32_Arm64$instance;
|
|
2796
2812
|
|
|
2797
2813
|
export interface Dp$instance {
|
|
2814
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Dp: never;
|
|
2815
|
+
|
|
2798
2816
|
}
|
|
2799
2817
|
|
|
2800
2818
|
|
|
@@ -2818,6 +2836,8 @@ export const Dp: {
|
|
|
2818
2836
|
export type Dp = Dp$instance;
|
|
2819
2837
|
|
|
2820
2838
|
export interface Dp_Arm64$instance {
|
|
2839
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Dp_Arm64: never;
|
|
2840
|
+
|
|
2821
2841
|
}
|
|
2822
2842
|
|
|
2823
2843
|
|
|
@@ -2829,6 +2849,8 @@ export const Dp_Arm64: {
|
|
|
2829
2849
|
export type Dp_Arm64 = Dp_Arm64$instance;
|
|
2830
2850
|
|
|
2831
2851
|
export interface Rdm$instance {
|
|
2852
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Rdm: never;
|
|
2853
|
+
|
|
2832
2854
|
}
|
|
2833
2855
|
|
|
2834
2856
|
|
|
@@ -2864,6 +2886,8 @@ export const Rdm: {
|
|
|
2864
2886
|
export type Rdm = Rdm$instance;
|
|
2865
2887
|
|
|
2866
2888
|
export interface Rdm_Arm64$instance {
|
|
2889
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Rdm_Arm64: never;
|
|
2890
|
+
|
|
2867
2891
|
}
|
|
2868
2892
|
|
|
2869
2893
|
|
|
@@ -2887,6 +2911,8 @@ export const Rdm_Arm64: {
|
|
|
2887
2911
|
export type Rdm_Arm64 = Rdm_Arm64$instance;
|
|
2888
2912
|
|
|
2889
2913
|
export interface Sha1$instance {
|
|
2914
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Sha1: never;
|
|
2915
|
+
|
|
2890
2916
|
}
|
|
2891
2917
|
|
|
2892
2918
|
|
|
@@ -2904,6 +2930,8 @@ export const Sha1: {
|
|
|
2904
2930
|
export type Sha1 = Sha1$instance;
|
|
2905
2931
|
|
|
2906
2932
|
export interface Sha1_Arm64$instance {
|
|
2933
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Sha1_Arm64: never;
|
|
2934
|
+
|
|
2907
2935
|
}
|
|
2908
2936
|
|
|
2909
2937
|
|
|
@@ -2915,6 +2943,8 @@ export const Sha1_Arm64: {
|
|
|
2915
2943
|
export type Sha1_Arm64 = Sha1_Arm64$instance;
|
|
2916
2944
|
|
|
2917
2945
|
export interface Sha256$instance {
|
|
2946
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Sha256: never;
|
|
2947
|
+
|
|
2918
2948
|
}
|
|
2919
2949
|
|
|
2920
2950
|
|
|
@@ -2930,6 +2960,8 @@ export const Sha256: {
|
|
|
2930
2960
|
export type Sha256 = Sha256$instance;
|
|
2931
2961
|
|
|
2932
2962
|
export interface Sha256_Arm64$instance {
|
|
2963
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Sha256_Arm64: never;
|
|
2964
|
+
|
|
2933
2965
|
}
|
|
2934
2966
|
|
|
2935
2967
|
|
|
@@ -2941,6 +2973,8 @@ export const Sha256_Arm64: {
|
|
|
2941
2973
|
export type Sha256_Arm64 = Sha256_Arm64$instance;
|
|
2942
2974
|
|
|
2943
2975
|
export interface Sve$instance {
|
|
2976
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Sve: never;
|
|
2977
|
+
|
|
2944
2978
|
}
|
|
2945
2979
|
|
|
2946
2980
|
|
|
@@ -4437,6 +4471,8 @@ export const Sve: {
|
|
|
4437
4471
|
export type Sve = Sve$instance;
|
|
4438
4472
|
|
|
4439
4473
|
export interface Sve_Arm64$instance {
|
|
4474
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Sve_Arm64: never;
|
|
4475
|
+
|
|
4440
4476
|
}
|
|
4441
4477
|
|
|
4442
4478
|
|
|
@@ -4448,6 +4484,8 @@ export const Sve_Arm64: {
|
|
|
4448
4484
|
export type Sve_Arm64 = Sve_Arm64$instance;
|
|
4449
4485
|
|
|
4450
4486
|
export interface Sve2$instance {
|
|
4487
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Sve2: never;
|
|
4488
|
+
|
|
4451
4489
|
}
|
|
4452
4490
|
|
|
4453
4491
|
|
|
@@ -5104,6 +5142,8 @@ export const Sve2: {
|
|
|
5104
5142
|
export type Sve2 = Sve2$instance;
|
|
5105
5143
|
|
|
5106
5144
|
export interface Sve2_Arm64$instance {
|
|
5145
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Arm_Sve2_Arm64: never;
|
|
5146
|
+
|
|
5107
5147
|
}
|
|
5108
5148
|
|
|
5109
5149
|
|
|
@@ -14,6 +14,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
14
14
|
import type { Boolean as ClrBoolean, Byte, Double, Int16, Int32, Int64, IntPtr, Object as ClrObject, SByte, Single, String as ClrString, Type, UInt16, UInt32, UInt64, UIntPtr, Void } from "../../System/internal/index.js";
|
|
15
15
|
|
|
16
16
|
export interface PackedSimd$instance {
|
|
17
|
+
readonly __tsonic_type_System_Runtime_Intrinsics_Wasm_PackedSimd: never;
|
|
18
|
+
|
|
17
19
|
}
|
|
18
20
|
|
|
19
21
|
|