Index: client/html/generated/html/interface/Storage.dart |
diff --git a/client/dom/templates/interface.darttemplate b/client/html/generated/html/interface/Storage.dart |
similarity index 57% |
copy from client/dom/templates/interface.darttemplate |
copy to client/html/generated/html/interface/Storage.dart |
index 4e092a52e6f8755ebae6d8b72e5ccd9873a6dca2..0e0603ecb9be57a11d4e424c55e573c7ba9f61ae 100644 |
--- a/client/dom/templates/interface.darttemplate |
+++ b/client/html/generated/html/interface/Storage.dart |
@@ -4,5 +4,17 @@ |
// WARNING: Do not edit - generated code. |
-interface $ID$!EXTENDS { |
-$!MEMBERS} |
+interface Storage { |
+ |
+ final int length; |
+ |
+ void clear(); |
+ |
+ String getItem(String key); |
+ |
+ String key(int index); |
+ |
+ void removeItem(String key); |
+ |
+ void setItem(String key, String data); |
+} |