UNPKG

@mvasilkov/outdent

Version:

Remove extra indentation from multiline strings.

9 lines (8 loc) 261 B
interface IOptions { strict?: boolean; endWithNewline?: boolean; tabSize?: number; } export declare function outdentLines(a: string[], options?: IOptions): string[]; export declare function outdent(a: string, options?: IOptions): string; export {};