fix(toc): correct type for minEntries param (#909)
This commit is contained in:
		@@ -6,7 +6,7 @@ import Slugger from "github-slugger"
 | 
			
		||||
 | 
			
		||||
export interface Options {
 | 
			
		||||
  maxDepth: 1 | 2 | 3 | 4 | 5 | 6
 | 
			
		||||
  minEntries: 1
 | 
			
		||||
  minEntries: number
 | 
			
		||||
  showByDefault: boolean
 | 
			
		||||
  collapseByDefault: boolean
 | 
			
		||||
}
 | 
			
		||||
@@ -52,7 +52,7 @@ export const TableOfContents: QuartzTransformerPlugin<Partial<Options> | undefin
 | 
			
		||||
                }
 | 
			
		||||
              })
 | 
			
		||||
 | 
			
		||||
              if (toc.length > opts.minEntries) {
 | 
			
		||||
              if (toc.length > 0 && toc.length > opts.minEntries) {
 | 
			
		||||
                file.data.toc = toc.map((entry) => ({
 | 
			
		||||
                  ...entry,
 | 
			
		||||
                  depth: entry.depth - highestDepth,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user