fork-ts-checker-webpack-plugin
Version:
Runs typescript type checker and linter on separate process.
9 lines (8 loc) • 357 B
TypeScript
import type { Formatter, FormatterPathType } from './formatter';
import type { FormatterOptions } from './formatter-options';
type FormatterConfig = {
format: Formatter;
pathType: FormatterPathType;
};
declare function createFormatterConfig(options: FormatterOptions | undefined): FormatterConfig;
export { FormatterConfig, createFormatterConfig };