// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. import type { SimpleDatetimeFormat } from "./SimpleDatetimeFormat.js"; /** * A datetime column's `date_format` in its `Simple` preset form: * `Intl.DateTimeFormatOptions`' `dateStyle`/`timeStyle` presets. This is * the default form (no `format` key); setting `format: "custom"` selects * the per-part `CustomDatetimeStyleConfig` instead. */ export type SimpleDatetimeStyleConfig = { /** * An IANA time zone name (e.g. `"America/New_York"`); defaults to the * browser's local time zone. */ timeZone?: string | null, /** * Date preset breadth, or `"disabled"` to omit the date entirely; * defaults to `"short"`. */ dateStyle?: SimpleDatetimeFormat, /** * Time preset breadth, or `"disabled"` to omit the time entirely; * defaults to `"medium"`. */ timeStyle?: SimpleDatetimeFormat, };