Skip to content

Commit

Permalink
basic doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
stackoverfloweth committed Sep 23, 2024
1 parent b0c5013 commit f1079cb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/api/types/ResolvedRoute.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ query: ResolvedRouteQuery;

Accessor for query string values from user in the current browser location. [ResolvedRouteQuery](/api/types/ResolvedRouteQuery)

### hash

```ts
hash?: string;
```

Accessor for hash string value (or undefined) from user in the current browser location.

### params

```ts
Expand Down
1 change: 1 addition & 0 deletions docs/api/types/RouterPush.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Push will update the URL for the browser and also add the URL into the history s
{
query?: Record<string, string>,
replace?: boolean,
hash?: string,
}
```

Expand Down
1 change: 1 addition & 0 deletions docs/api/types/RouterReplace.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Replace has the same effect as [`RouterPush`](/api/types/RouterPush) but without
```ts
{
query?: Record<string, string>,
hash?: string,
}
```

Expand Down
1 change: 1 addition & 0 deletions docs/api/types/RouterResolve.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ If source is `Url`, expected type for params is `never`. Else when source is `TS
```ts
{
query?: Record<string, string>,
hash?: string,
}
```

Expand Down

0 comments on commit f1079cb

Please sign in to comment.