pas2js/packages/tinyeditor/libtinyeditor.pp
Michaël Van Canneyt 56ec14f407 * Tiny editor
2022-07-17 20:48:43 +02:00

22 lines
317 B
ObjectPascal

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.