12 lines
219 B
TypeScript
12 lines
219 B
TypeScript
import { type MetadataCache } from 'obsidian'
|
|
|
|
declare module 'obsidian' {
|
|
interface MetadataCache {
|
|
isUserIgnored?(path: string): boolean
|
|
}
|
|
|
|
interface FrontMatterCache {
|
|
aliases?: string[] | string
|
|
}
|
|
}
|