blob: f8c4cf50bdcb7f86d2f35a8295ad2054c6edf6b6 [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/file-system-access/#filesystemfilehandle
[
Exposed=(Window,Worker),
SecureContext,
Serializable,
RuntimeEnabled=FileSystemAccess
] interface FileSystemFileHandle : FileSystemHandle {
[CallWith=ScriptState, RaisesException]
Promise<FileSystemWritableFileStream> createWritable(optional FileSystemCreateWritableOptions options = {});
[CallWith=ScriptState, RaisesException] Promise<File> getFile();
};