Merge branch 'NewDeclaration' into 'main'

New declaration of the functions.

See merge request freepascal.org/fpc/pas2js!87
This commit is contained in:
Henrique Gottardi Werlang 2025-02-27 20:28:14 +00:00
commit 70cce958d4
2 changed files with 3 additions and 1 deletions

View File

@ -655,6 +655,8 @@ type
class function _of(aValue : jsValue) : TJSUInt8Array; varargs; external name 'of'; reintroduce; overload;
function subarray(aBegin, aEnd: Integer): TJSUInt8Array; overload;
function subarray(aBegin: Integer): TJSUInt8Array; overload;
function toBase64: String;
function toBase64(options: TJSObject): String;
procedure _set(anArray : Array of Byte); external name 'set'; reintroduce; overload;
procedure _set(anArray : Array of Byte; anOffset : NativeInt); external name 'set'; overload;
Property values[Index : NativeInt] : Byte Read getTypedValue Write setTypedValue; default;

View File

@ -309,7 +309,7 @@ type
function slice(aStart,aEnd : NativeInt) : TJSBlob; overload;
function slice(aStart,aEnd : NativeInt; AContentType : String) : TJSBlob; overload;
function arrayBuffer : TJSPromise;
function bytes: TJSPromise;
function bytes: TJSUint8Array; async;
function stream: TJSReadableStream;
function text: TJSPromise;
property size : NativeInt read FSize;