Index: client/html/generated/html/interface/FileWriter.dart |
diff --git a/client/html/generated/html/interface/FileWriter.dart b/client/html/generated/html/interface/FileWriter.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..16043f2e299d41c33e07aca6567617af4b68a376 |
--- /dev/null |
+++ b/client/html/generated/html/interface/FileWriter.dart |
@@ -0,0 +1,42 @@ |
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
+// for details. All rights reserved. Use of this source code is governed by a |
+// BSD-style license that can be found in the LICENSE file. |
+ |
+// WARNING: Do not edit - generated code. |
+ |
+interface FileWriter { |
+ |
+ static final int DONE = 2; |
+ |
+ static final int INIT = 0; |
+ |
+ static final int WRITING = 1; |
+ |
+ final FileError error; |
+ |
+ final int length; |
+ |
+ EventListener onabort; |
+ |
+ EventListener onerror; |
+ |
+ EventListener onprogress; |
+ |
+ EventListener onwrite; |
+ |
+ EventListener onwriteend; |
+ |
+ EventListener onwritestart; |
+ |
+ final int position; |
+ |
+ final int readyState; |
+ |
+ void abort(); |
+ |
+ void seek(int position); |
+ |
+ void truncate(int size); |
+ |
+ void write(Blob data); |
+} |