UNPKG

obsidian-dev-utils

Version:

This is the collection of useful functions that you can use for your Obsidian plugin development

12 lines (11 loc) 260 B
/** * @packageDocumentation * * NPM run utilities. */ /** * Runs a command using npm checking if the command is overridden in the package.json. * * @param command - The command to run. */ export declare function npmRun(command: string): Promise<void>;