UNPKG

260 BTypeScriptView Raw
1import type { Row } from './types/internal';
2export declare const truncateString: (input: string, length: number) => string;
3/**
4 * @todo Make it work with ASCII content.
5 */
6export declare const truncateTableData: (rows: Row[], truncates: number[]) => Row[];