import { TAbstractFile } from "obsidian"; export interface FileEventHandler { onCreate: (path: TAbstractFile) => Promise; onDelete: (path: TAbstractFile) => Promise; onRename: (path: TAbstractFile, oldPath: string) => Promise; onModify: (path: TAbstractFile) => Promise; }