import { IncludeExcludeWithOptionsConfigSettings, MrCommandConfigSettings, MrCommandOptions } from '@cirrusct/mr-core'; import { Options as PrettierOptions } from 'prettier'; export interface FormatCommandOptions extends MrCommandOptions { gitStaged?: boolean; dryRun?: boolean; } export interface FormatCommandArguments { files?: string[]; } export interface FormatCommandConfigSettings extends IncludeExcludeWithOptionsConfigSettings, MrCommandConfigSettings {}