/** * Compact data format - a single object with the members list and a dataset of primitive arrays. Returned when `responseFormat=compact` is requested. */ export interface LoadResultDataCompact { /** Ordered list of member names that correspond to each cell position in `dataset` rows. */ members: string[]; /** Array of rows, where each row is an array of primitive values (null, boolean, number, string) aligned with `members`. */ dataset: unknown[][]; }