Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1105,9 +1105,9 @@ enum WriteCommandType {

dictionary WriteParams {
required WriteCommandType type;
unsigned long long? size;
unsigned long long? position;
(BufferSource or Blob or USVString)? data;
unsigned long long size;
unsigned long long position;
(BufferSource or Blob or USVString) data;
};

typedef (BufferSource or Blob or USVString or WriteParams) FileSystemWriteChunkType;
Expand Down