| Index: client/dom/generated/src/frog/History.dart
|
| diff --git a/client/dom/generated/src/frog/History.dart b/client/dom/generated/src/frog/History.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1a8e4327ab97e228486c2a9eb8c465ee55a27e96
|
| --- /dev/null
|
| +++ b/client/dom/generated/src/frog/History.dart
|
| @@ -0,0 +1,19 @@
|
| +
|
| +class History native "History" {
|
| +
|
| + int length;
|
| +
|
| + void back() native;
|
| +
|
| + void forward() native;
|
| +
|
| + void go(int distance) native;
|
| +
|
| + void pushState(Object data, String title, [String url = null]) native;
|
| +
|
| + void replaceState(Object data, String title, [String url = null]) native;
|
| +
|
| + var dartObjectLocalStorage;
|
| +
|
| + String get typeName() native;
|
| +}
|
|
|