UNPKG

ovm

Version:

OVM is a CLI application for managing Obsidian vaults.

6 lines (5 loc) 367 B
import { Vault } from 'obsidian-utils'; import { CommonFlags } from '../types/commands'; export declare const flagsInterceptor: <T extends CommonFlags>(flags: T) => T; export declare const handlerCommandError: (error: unknown) => Promise<void> | undefined; export declare const asyncExecCustomCommand: (vault: Vault, command: string, cwd: string) => Promise<string>;