UNPKG

133 BTypeScriptView Raw
1interface Options {
2 width?: number;
3}
4declare function wordWrap(str: string, options?: Options): string;
5export = wordWrap;