Feature/2 ignore folders (#42)

* Updated README

* #2 - using Obsidian's "Excluded files" setting to downrank results

* #2 - using the correct api
This commit is contained in:
Simon Cambier
2022-05-04 08:53:02 +02:00
committed by GitHub
parent 7d0b5c0c82
commit 3bd300160e
2 changed files with 14 additions and 1 deletions

7
src/types.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
import { type MetadataCache } from 'obsidian'
declare module 'obsidian' {
interface MetadataCache {
isUserIgnored(path:string):boolean
}
}