blob: 74f5582f547db8c5a6dd85c7aa6e470bd8d84da0 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://wicg.github.io/writable-files/#filesystemfilehandle
[
RuntimeEnabled=WritableFiles
] interface FileSystemFileHandle : FileSystemBaseHandle {
[CallWith=ScriptState] Promise<FileSystemWriter> createWriter();
[CallWith=ScriptState] Promise<File> getFile();
};