File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
src/main/scala/org/scalajs/dom/raw Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -5146,8 +5146,6 @@ class History extends js.Object {
5146
5146
*/
5147
5147
def length : Int = js.native
5148
5148
5149
- def back (distance : js.Any ): Unit = js.native
5150
-
5151
5149
/**
5152
5150
* Goes to the previous page in session history, the same action as when the user clicks
5153
5151
* the browser's Back button. Equivalent to history.go(-1). Note: Calling this
@@ -5158,8 +5156,6 @@ class History extends js.Object {
5158
5156
*/
5159
5157
def back (): Unit = js.native
5160
5158
5161
- def forward (distance : js.Any ): Unit = js.native
5162
-
5163
5159
/**
5164
5160
* Goes to the next page in session history, the same action as when the user clicks the
5165
5161
* browser's Forward button; this is equivalent to history.go(1). Note: Calling
@@ -5170,7 +5166,7 @@ class History extends js.Object {
5170
5166
*/
5171
5167
def forward (): Unit = js.native
5172
5168
5173
- def go (delta : js. Any ): Unit = js.native
5169
+ def go (delta : Int ): Unit = js.native
5174
5170
5175
5171
/**
5176
5172
* Loads a page from the session history, identified by its relative location to the
You can’t perform that action at this time.
0 commit comments