Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
brillout committed Jul 19, 2024
1 parent 9bf612b commit f0c67ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vike/utils/parseUrl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ import pc from '@brillout/picocolors'
// JSDocs copied from https://vike.dev/pageContext
type UrlPublic = {
/** The full URL. (Without Base URL.) */
href: null | string
href: string
/** The full URL. (With Base URL.) */
hrefOriginal: null | string
hrefOriginal: string
/** The URL protocol, e.g. `https://` in `https://example.com` */
protocol: null | string
/** The URL host, e.g. `example.com` in `https://example.com/product` */
Expand Down

0 comments on commit f0c67ab

Please sign in to comment.