Skip to content

Commit

Permalink
fix(sidebar): type constrainted to true (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
nekomeowww authored Jan 8, 2025
1 parent 811ead3 commit a586f32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vitepress-plugin-sidebar/src/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ interface ArticleTree {
text: string
link?: string
lastUpdated?: number
collapsible?: true
collapsed?: true
collapsible?: boolean
collapsed?: boolean
items?: ArticleTree[]
category?: string
}
Expand Down

0 comments on commit a586f32

Please sign in to comment.