mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 13:37:47 +02:00
* Correctly define TJSInputEvent
This commit is contained in:
parent
e06f74d512
commit
15d5b68de7
@ -3073,6 +3073,21 @@ Type
|
|||||||
property shiftKey : Boolean read FShiftKey;
|
property shiftKey : Boolean read FShiftKey;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
{ TJSInputEvent }
|
||||||
|
|
||||||
|
TJSInputEvent = class external name 'InputEvent' (TJSUIEvent)
|
||||||
|
private
|
||||||
|
FData: string; external name 'data';
|
||||||
|
FDataTransfer: TJSDataTransfer; external name 'dataTransfer';
|
||||||
|
FInput: string; external name 'input';
|
||||||
|
FIsComposing: boolean; external name 'isComposing';
|
||||||
|
public
|
||||||
|
property Data : string read FData;
|
||||||
|
property DataTransfer : TJSDataTransfer read FDataTransfer;
|
||||||
|
property InputType : string read FInput;
|
||||||
|
property isComposing : boolean read FIsComposing;
|
||||||
|
end;
|
||||||
|
|
||||||
{ MutationObserver }
|
{ MutationObserver }
|
||||||
|
|
||||||
TJSMutationObserver = Class;
|
TJSMutationObserver = Class;
|
||||||
|
Loading…
Reference in New Issue
Block a user