import type { CompactDisplay } from "./CompactDisplay.js"; /** * The `notation` family of a numeric column's `number_format` — * serialized FLATTENED into [`CustomNumberFormatConfig`]'s object, * discriminated by the `notation` key (`"standard"` default, * `"scientific"`, `"engineering"`, `"compact"` + `compactDisplay`), * mirroring `Intl.NumberFormat` options. */ export type Notation = { "notation": "standard"; } | { "notation": "scientific"; } | { "notation": "engineering"; } | { "notation": "compact"; } & CompactDisplay;