UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

9 lines (8 loc) 287 B
/** * 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[];