ship-gis/node_modules/fork-ts-checker-webpack-plugin/lib/formatter/FormatterOptions.d.ts
2026-01-22 09:14:01 +09:00

8 lines
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 };