Object containing formatting information for Numeric and Date Columns

TypeScript
export type AdaptableFormat = {
    Formatter: 'NumberFormatter';
    Options: NumberFormatterOptions;
} | {
    Formatter: 'DateFormatter';
    Options: DateFormatterOptions;
} | {
    Formatter: 'StringFormatter';
    Options: StringFormatterOptions;
};
References

NumberFormatterOptions | DateFormatterOptions | StringFormatterOptions