mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 11:17:45 +02:00
Merge branch 'NewDeclaration' into 'main'
New declaration of the functions. See merge request freepascal.org/fpc/pas2js!87
This commit is contained in:
commit
70cce958d4
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user