Files
serenity/Userland/Libraries/LibWeb/EntriesAPI/FileSystemEntry.idl
Jamie Mansfield 722e144eba LibWeb/EntriesAPI: Implement FileSystemEntry
(cherry picked from commit 169163b0023302ae3a0762d875e7b7840cfcb687)
2024-11-09 16:08:01 -05:00

11 lines
397 B
Plaintext

[Exposed=Window]
interface FileSystemEntry {
readonly attribute boolean isFile;
readonly attribute boolean isDirectory;
readonly attribute USVString name;
[FIXME] readonly attribute USVString fullPath;
[FIXME] readonly attribute FileSystem filesystem;
[FIXME] undefined getParent(optional FileSystemEntryCallback successCallback, optional ErrorCallback errorCallback);
};