Declaring the function in the array to convert to base 64 the internal value.

This commit is contained in:
Henrique Gottardi Werlang 2025-02-27 15:40:29 -03:00
parent fd54970bf5
commit e34d33f80d

View File

@ -653,6 +653,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;