/** * Custom time format for time dimensions */ export interface CustomTimeFormat { /** Type of the format (must be 'custom-time') */ type: "custom-time"; /** POSIX strftime format string (IEEE Std 1003.1 / POSIX.1) with d3-time-format extensions (e.g., '%Y-%m-%d', '%d/%m/%Y %H:%M:%S'). See https://pubs.opengroup.org/onlinepubs/009695399/functions/strptime.html and https://d3js.org/d3-time-format */ value: string; }