Skip to content

Commit 28b9900

Browse files
committed
Updated generated cs with a TypedArray support.
1 parent 9fbcccb commit 28b9900

File tree

5 files changed

+111
-111
lines changed

5 files changed

+111
-111
lines changed

CSharpToJavaScript/APIs/JS/Generated/JS1.generated.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//17.03.2025 17:27:25
1+
//01.05.2025 20:45:13
22

33
#nullable enable
44
//Disable missing XML comments.
@@ -98,7 +98,7 @@ namespace CSharpToJavaScript.APIs.JS;
9898
using ImageBufferSource = Union186;
9999
using AlgorithmIdentifier = Union187;
100100
using HashAlgorithmIdentifier = Unsupported /*AlgorithmIdentifier*/;
101-
using BigInteger = System.Byte;
101+
using BigInteger = Uint8Array;
102102
using NamedCurve = string;
103103
using GLenum = ulong;
104104
using GLboolean = bool;

CSharpToJavaScript/APIs/JS/Generated/JS2.generated.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//17.03.2025 17:27:25
1+
//01.05.2025 20:45:13
22

33
#nullable enable
44
//Disable missing XML comments.
@@ -98,7 +98,7 @@ namespace CSharpToJavaScript.APIs.JS;
9898
using ImageBufferSource = Union186;
9999
using AlgorithmIdentifier = Union187;
100100
using HashAlgorithmIdentifier = Unsupported /*AlgorithmIdentifier*/;
101-
using BigInteger = System.Byte;
101+
using BigInteger = Uint8Array;
102102
using NamedCurve = string;
103103
using GLenum = ulong;
104104
using GLboolean = bool;
@@ -422,7 +422,7 @@ public partial interface Body
422422
public bool BodyUsed { get { throw new System.NotImplementedException(); } }
423423
public Task<byte[]> ArrayBuffer() { throw new System.NotImplementedException(); }
424424
public Task<Blob> Blob() { throw new System.NotImplementedException(); }
425-
public Task<System.Byte> Bytes() { throw new System.NotImplementedException(); }
425+
public Task<Uint8Array> Bytes() { throw new System.NotImplementedException(); }
426426
public Task<FormData> FormData() { throw new System.NotImplementedException(); }
427427
public Task<dynamic> Json() { throw new System.NotImplementedException(); }
428428
public Task<USVString> Text() { throw new System.NotImplementedException(); }
@@ -2093,7 +2093,7 @@ public partial interface GPUCommandsMixin
20932093
public partial interface GPUBindingCommandsMixin
20942094
{
20952095
public Undefined SetBindGroup(GPUIndex32 index, GPUBindGroup? bindGroup, List<GPUBufferDynamicOffset> dynamicOffsets = default) { throw new System.NotImplementedException(); }
2096-
public Undefined SetBindGroup(GPUIndex32 index, GPUBindGroup? bindGroup, System.UInt32 dynamicOffsetsData, GPUSize64 dynamicOffsetsDataStart, GPUSize32 dynamicOffsetsDataLength) { throw new System.NotImplementedException(); }
2096+
public Undefined SetBindGroup(GPUIndex32 index, GPUBindGroup? bindGroup, Uint32Array dynamicOffsetsData, GPUSize64 dynamicOffsetsDataStart, GPUSize32 dynamicOffsetsDataLength) { throw new System.NotImplementedException(); }
20972097
}
20982098

20992099
[To(ToAttribute.FirstCharToLowerCase)]

0 commit comments

Comments
 (0)