mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-03 09:29:59 +08: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[];
|