6 lines
128 B
TypeScript
6 lines
128 B
TypeScript
interface Options {
|
|
width?: number;
|
|
}
|
|
declare function wordWrap(str: string, options?: Options): string;
|
|
export = wordWrap;
|