/** * Options for serializing a window of data from a [`View`]. * * Some fields of [`ViewWindow`] are only applicable to specific methods of * [`View`]. */ export type ViewWindow = { start_row: number | null; start_col: number | null; end_row: number | null; end_col: number | null; id: boolean | null; index: boolean | null; leaves_only: boolean | null; /** * Only impacts [`View::to_csv`] */ formatted: boolean | null; /** * Only impacts [`View::to_arrow`] */ compression: string | null; };