Skip to content

Commit

Permalink
feat(projects): Add type to TabRoute: matched
Browse files Browse the repository at this point in the history
  • Loading branch information
Azir-11 committed Feb 6, 2024
1 parent a9c98d9 commit 2d102a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/typings/app.d.ts
Expand Up @@ -170,7 +170,7 @@ declare namespace App {
};

/** Tab route */
type TabRoute = Pick<RouteLocationNormalizedLoaded, 'name' | 'path' | 'meta'> &
type TabRoute = Pick<RouteLocationNormalizedLoaded, 'name' | 'path' | 'meta' | 'matched'> &
Partial<Pick<RouteLocationNormalizedLoaded, 'fullPath' | 'query'>>;

/** The global tab */
Expand Down

0 comments on commit 2d102a0

Please sign in to comment.