mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-19 00:01:59 +00:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
13 lines
466 B
Text
13 lines
466 B
Text
callback FunctionStringCallback = undefined (DOMString data);
|
|
|
|
// https://html.spec.whatwg.org/multipage/dnd.html#datatransferitem
|
|
[Exposed=Window]
|
|
interface DataTransferItem {
|
|
readonly attribute DOMString kind;
|
|
readonly attribute DOMString type;
|
|
undefined getAsString(FunctionStringCallback? _callback);
|
|
File? getAsFile();
|
|
|
|
// https://wicg.github.io/entries-api/#dom-datatransferitem-webkitgetasentry
|
|
FileSystemEntry? webkitGetAsEntry();
|
|
};
|