eslintwork/node_modules/table/dist/calculateColumnWidths.d.ts
Martin Donnelly 9cbf1eea5b init
2021-06-24 09:26:17 +01:00

7 lines
224 B
TypeScript

import type { Row } from './types/internal';
declare const _default: (rows: Row[]) => number[];
/**
* Produces an array of values that describe the largest value length (width) in every column.
*/
export default _default;