/** * Custom numeric format for numeric measures and dimensions */ export interface CustomNumericFormat { /** Type of the format (must be 'custom-numeric') */ type: "custom-numeric"; /** d3-format specifier string (e.g., '.2f', ',.0f', '$,.2f', '.0%', '.2s'). See https://d3js.org/d3-format */ value: string; /** Name of the predefined format (e.g., 'percent_2', 'currency_1'). Present only when a named format was used. */ alias?: string; }