UNPKG

obsidian-dev-utils

Version:

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

13 lines (12 loc) 308 B
/** * @packageDocumentation * * Format the source code. */ /** * Format the source code. * * @param rewrite - Whether to rewrite the source code. * @returns A {@link Promise} that resolves when the source code has been formatted. */ export declare function format(rewrite?: boolean): Promise<void>;