/** * A window's order direction. A dedicated two-variant enum rather than * [`crate::config::SortDir`] - the column-sort extras (`col asc`, `abs`, * `none`) are meaningless inside a window frame and unrepresentable here. */ export type WindowSortDir = "asc" | "desc";