Skip to content

Commit

Permalink
feat(client): export ResolvedRoute type (#1525)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mister-Hope committed Apr 4, 2024
1 parent dbebec0 commit 950f158
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/client/src/router/resolveRoute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { routes } from '../internal/routes.js'
import type { Route, RouteMeta } from '../types/index.js'
import { resolveRoutePath } from './resolveRoutePath.js'

interface ResolvedRoute<T extends RouteMeta = RouteMeta> extends Route<T> {
export interface ResolvedRoute<T extends RouteMeta = RouteMeta>
extends Route<T> {
path: string
notFound: boolean
}
Expand Down

0 comments on commit 950f158

Please sign in to comment.