1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- export = wrap;
- declare function wrap(str: string, options?: wrap.IOptions): string;
- declare namespace wrap {
- export interface IOptions {
-
- width?: number;
-
- indent?: string;
-
- newline?: string;
-
- escape?: (str: string) => string;
-
- trim?: boolean;
-
- cut?: boolean;
- }
- }
|