Files
szjs/node_modules/table/dist/src/truncateTableData.d.ts

7 lines
260 B
TypeScript
Raw Normal View History

2025-03-07 22:27:18 +08:00
import type { Row } from './types/internal';
export declare const truncateString: (input: string, length: number) => string;
/**
* @todo Make it work with ASCII content.
*/
export declare const truncateTableData: (rows: Row[], truncates: number[]) => Row[];