Files
est-frame/node_modules/fork-ts-checker-webpack-plugin/lib/formatter/FormatterOptions.d.ts
2025-10-22 05:38:27 +00:00

8 lines
327 B
TypeScript
Executable File

import { ComplexFormatterOptions, FormatterType } from './FormatterFactory';
declare type ComplexFormatterPreferences<T extends FormatterType = FormatterType> = {
type: T;
options?: ComplexFormatterOptions<T>;
};
declare type FormatterOptions = FormatterType | ComplexFormatterPreferences;
export { FormatterOptions };