@clickup/pg-microsharding
Version:
Microshards support for PostgreSQL
9 lines • 484 B
TypeScript
/**
* Treats rows as table rows where keys of each row are column names. For each
* column name, checks that all cell values there are numbers (or are empty). If
* so, chooses the maximal suitable factor suffix for those numbers. Also, makes
* sure that all rows have the same number of columns (adding empty cells if
* needed).
*/
export declare function normalizeCellNumbers(rows: Array<Record<string, string>>): typeof rows;
//# sourceMappingURL=normalizeCellNumbers.d.ts.map