* Tiny editor

This commit is contained in:
Michaël Van Canneyt 2022-07-17 20:47:59 +02:00
parent 180a218095
commit 56ec14f407

View File

@ -0,0 +1,21 @@
unit libtinyeditor;
{$mode objfpc}
{$modeswitch externalclass}
interface
Uses JS, Web;
Type
TTinyEditor = class external name 'Object' (TJSObject)
Public
procedure transformToEditor(aElement : TJSHTMLElement);
end;
var
tinyEditor : TTinyEditor; external name '__tinyEditor';
Implementation
end.