UNPKG

@textlint/fixer-formatter

Version:

textlint output formatter for fixer

13 lines 446 B
import type { TextlintFixResult } from "@textlint/types"; export type FormatterConfig = { color?: boolean; formatterName: string; }; export declare function loadFormatter(formatterConfig: FormatterConfig): Promise<{ format(results: TextlintFixResult[]): string; }>; export interface FixerFormatterDetail { name: string; } export declare function getFixerFormatterList(): FixerFormatterDetail[]; //# sourceMappingURL=index.d.ts.map