fork-ts-checker-webpack-plugin
Version:
Runs typescript type checker and linter on separate process.
8 lines (7 loc) • 327 B
TypeScript
import { ComplexFormatterOptions, FormatterType } from './FormatterFactory';
declare type ComplexFormatterPreferences<T extends FormatterType = FormatterType> = {
type: T;
options?: ComplexFormatterOptions<T>;
};
declare type FormatterOptions = FormatterType | ComplexFormatterPreferences;
export { FormatterOptions };