Types: RouterPushOptions<TState> 
ts
type RouterPushOptions<TState> = object;Type Parameters 
| Type Parameter | Default type | 
|---|---|
| TState | unknown | 
Properties 
| Property | Type | Description | 
|---|---|---|
| hash? | string | The hash to append to the url. | 
| query? | QuerySource | The query string to add to the url. | 
| replace? | boolean | Whether to replace the current history entry. | 
| state? | Partial<TState> | State values to pass to the route. |