mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-09 19:44:56 +02:00
8 lines
327 B
TypeScript
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 };
|