// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. 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;