Skip to content

Commit

Permalink
chore: fix wrong use of type
Browse files Browse the repository at this point in the history
  • Loading branch information
timothejoubert committed Jun 11, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 4f5998c commit a98ada9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions types/app.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { UnionToIntersection } from '~/utils/types'
import type { RoadizNodeType } from '@roadiz/types'
import type { RoadizNodesSources } from '@roadiz/types'

export type MenuNodeType = RoadizNodeType
export type MenuNodeType = RoadizNodesSources
export type MenuNodeKeyMerged = Partial<UnionToIntersection<MenuNodeType>>

export type ReachableItem = RoadizNodeType
export type ReachableItem = RoadizNodesSources
export type ReachableItemMerged = Partial<UnionToIntersection<ReachableItem>>

0 comments on commit a98ada9

Please sign in to comment.