blob: 9907820a2af5ad831eb1e855b4d4f93057e6ceb9 [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/#enumdef-choosefilesystementriestype
enum ChooseFileSystemEntriesType { "openFile", "saveFile", "openDirectory" };
// https://wicg.github.io/writable-files/#dictdef-choosefilesystementriesoptions
dictionary ChooseFileSystemEntriesOptions {
ChooseFileSystemEntriesType type = "openFile";
boolean multiple = false;
sequence<ChooseFileSystemEntriesOptionsAccepts> accepts;
boolean excludeAcceptAllOption = false;
};