mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
9 lines
287 B
TypeScript
9 lines
287 B
TypeScript
/**
|
|
* Wrap a single cell value into a list of lines
|
|
*
|
|
* Always wraps on newlines, for the remainder uses either word or string wrapping
|
|
* depending on user configuration.
|
|
*
|
|
*/
|
|
export declare const wrapCell: (cellValue: string, cellWidth: number, useWrapWord: boolean) => string[];
|