Returns the current state stored by the browser for the current history entry.
()
| 139 | |
| 140 | /** Returns the current state stored by the browser for the current history entry. */ |
| 141 | restoredState(): RestoredState | null | undefined { |
| 142 | return this.location.getState() as RestoredState | null | undefined; |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * Registers a listener that is called whenever the current history entry changes by some API |
nothing calls this directly
no test coverage detected
searching dependent graphs…