From 79014dc1dd50bef9eff5b29ddf37c57028377aa4 Mon Sep 17 00:00:00 2001 From: Michael Naumov Date: Sun, 8 Dec 2024 13:50:40 -0600 Subject: [PATCH] feat: add recomputeBacklink --- src/obsidian/internals/Views/BacklinkView.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/obsidian/internals/Views/BacklinkView.d.ts b/src/obsidian/internals/Views/BacklinkView.d.ts index 6914fea..0a27740 100644 --- a/src/obsidian/internals/Views/BacklinkView.d.ts +++ b/src/obsidian/internals/Views/BacklinkView.d.ts @@ -1,8 +1,13 @@ +import type { TFile } from 'obsidian'; import type { InfoFileView } from './InfoFileView.js'; /** @todo Documentation incomplete */ /** @public */ export interface BacklinkView extends InfoFileView { + backlink: { + recomputeBacklink: (backlinkFile: TFile) => void; + }; + /** * Get the current view type */