Files
mooknote_web/node_modules/table/dist/src/truncateTableData.d.ts
DelLevin-Home a4a326401e 1
2026-03-10 22:06:32 +08:00

7 lines
260 B
TypeScript

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[];