mirror of
https://github.com/apache/superset.git
synced 2026-08-05 21:42:48 +00:00
feat(build): migrate from Prettier to Oxfmt for performant code formatting (#42434)
This commit is contained in:
@@ -938,7 +938,8 @@ class PivotData {
|
||||
props: Record<string, unknown>;
|
||||
aggregator: (...args: unknown[]) => Aggregator;
|
||||
formattedAggregators:
|
||||
Record<string, Record<string, (...args: unknown[]) => Aggregator>> | false;
|
||||
| Record<string, Record<string, (...args: unknown[]) => Aggregator>>
|
||||
| false;
|
||||
tree: Record<string, Record<string, Aggregator>>;
|
||||
rowKeys: string[][];
|
||||
colKeys: string[][];
|
||||
|
||||
@@ -42,7 +42,9 @@ export type FilterType = Record<string, DataRecordValue>;
|
||||
export type SelectedFiltersType = Record<string, DataRecordValue[]>;
|
||||
|
||||
export type DateFormatter =
|
||||
TimeFormatter | NumberFormatter | ((value: DataRecordValue) => string);
|
||||
| TimeFormatter
|
||||
| NumberFormatter
|
||||
| ((value: DataRecordValue) => string);
|
||||
export enum MetricsLayoutEnum {
|
||||
ROWS = 'ROWS',
|
||||
COLUMNS = 'COLUMNS',
|
||||
|
||||
Reference in New Issue
Block a user