📄 FormatterOptions.d.ts
/home/palash/git/site/node_modules/fork-ts-checker-webpack-plugin/lib/formatter/FormatterOptions.d.ts
Language: ts • Lines: 7
import { ComplexFormatterOptions, FormatterType } from './FormatterFactory';
declare type ComplexFormatterPreferences<T extends FormatterType = FormatterType> = {
    type: T;
    options?: ComplexFormatterOptions<T>;
};
declare type FormatterOptions = FormatterType | ComplexFormatterPreferences;
export { FormatterOptions };