mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-08-15 23:29:04 +02:00
Declaring the function in the array to convert to base 64 the internal value.
This commit is contained in:
parent
fd54970bf5
commit
e34d33f80d
@ -653,6 +653,8 @@ type
|
|||||||
class function _of(aValue : jsValue) : TJSUInt8Array; varargs; external name 'of'; reintroduce; overload;
|
class function _of(aValue : jsValue) : TJSUInt8Array; varargs; external name 'of'; reintroduce; overload;
|
||||||
function subarray(aBegin, aEnd: Integer): TJSUInt8Array; overload;
|
function subarray(aBegin, aEnd: Integer): TJSUInt8Array; overload;
|
||||||
function subarray(aBegin: 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); external name 'set'; reintroduce; overload;
|
||||||
procedure _set(anArray : Array of Byte; anOffset : NativeInt); external name 'set'; overload;
|
procedure _set(anArray : Array of Byte; anOffset : NativeInt); external name 'set'; overload;
|
||||||
Property values[Index : NativeInt] : Byte Read getTypedValue Write setTypedValue; default;
|
Property values[Index : NativeInt] : Byte Read getTypedValue Write setTypedValue; default;
|
||||||
|
Loading…
Reference in New Issue
Block a user