blob: 9e6a39c7f5263112f61aaea8a40fa35356296f82 [file] [log] [blame]
// Copyright 2019 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/native-file-system/#enumdef-writecommandtype
enum WriteCommandType {
"truncate",
"seek",
"write",
};
// https://wicg.github.io/native-file-system/#dictdef-writeparams
dictionary WriteParams {
required WriteCommandType type;
unsigned long long? size;
unsigned long long? position;
(BufferSource or Blob or USVString)? data;
};