mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-01 05:41:01 +00:00
13 lines
403 B
Text
13 lines
403 B
Text
|
|
#import <FileAPI/File.idl>
|
||
|
|
|
||
|
|
callback FunctionStringCallback = undefined (DOMString data);
|
||
|
|
|
||
|
|
// https://html.spec.whatwg.org/multipage/dnd.html#datatransferitem
|
||
|
|
[Exposed=Window]
|
||
|
|
interface DataTransferItem {
|
||
|
|
[FIXME] readonly attribute DOMString kind;
|
||
|
|
[FIXME] readonly attribute DOMString type;
|
||
|
|
[FIXME] undefined getAsString(FunctionStringCallback? _callback);
|
||
|
|
[FIXME] File? getAsFile();
|
||
|
|
};
|