import type { CSSProperties } from "../CSSProperties"; export type GridRowLonghands = Required< Pick >; export function gridRow( start: NonNullable, end: NonNullable = start, ): GridRowLonghands { return { gridRowStart: start, gridRowEnd: end, }; }