* Some additional types needed in browser.webidl

This commit is contained in:
Michael Van Canneyt 2024-04-09 18:07:20 +02:00
parent ec96d00c47
commit 6c8339b993

View File

@ -21,6 +21,8 @@ const
MaxSafeIntDouble = $1fffffffffffff; // 9007199254740991
Type
TDOMHighResTimeStamp = Int64;
PJOBObjectID = ^TJOBObjectID;
EJSObject = class(Exception);
@ -495,6 +497,12 @@ type
public
class function Cast(const Intf: IJSObject): IJSString; overload;
end;
IJSIterator = interface (IJSObject) ['{21E331BA-7B57-42DD-8DCE-B26FEA85C639}']
end;
TJSIteraror = class(TJSObject,IJSIterator)
end;
{ IJSArray }