|
5 | 5 |
|
6 | 6 | declare var js_beautify: {
|
7 | 7 | (js_source_text: string, options?: {
|
8 |
| - "indent_size"?: number; |
9 |
| - "indent_char"?: string; |
10 |
| - "eol"?: string; |
11 |
| - "indent_level"?: number; |
12 |
| - "indent_width_tabs"?: boolean; |
13 |
| - "preserve_newlines"?: boolean; |
14 |
| - "max_preserve_newlines"?: number; |
15 |
| - "jslint_happy": boolean; |
16 |
| - "space_after_anon_function": boolean; |
17 |
| - "brace_style": string; |
18 |
| - "keep_array_indentation": boolean; |
19 |
| - "keep_function_indentation": boolean; |
20 |
| - "space_before_conditional": boolean; |
21 |
| - "break_chained_methods": boolean; |
22 |
| - "eval_code": boolean; |
23 |
| - "unescape_strings": boolean; |
24 |
| - "wrap_line_length": number; |
25 |
| - "wrap_attributes": string; |
26 |
| - "wrap_attributes_indent_size": number; |
27 |
| - "end_with_newline": boolean; |
| 8 | + indent_size?: number; |
| 9 | + indent_char?: string; |
| 10 | + eol?: string; |
| 11 | + indent_level?: number; |
| 12 | + indent_width_tabs?: boolean; |
| 13 | + preserve_newlines?: boolean; |
| 14 | + max_preserve_newlines?: number; |
| 15 | + jslint_happy: boolean; |
| 16 | + space_after_anon_function: boolean; |
| 17 | + brace_style: string; |
| 18 | + keep_array_indentation: boolean; |
| 19 | + keep_function_indentation: boolean; |
| 20 | + space_before_conditional: boolean; |
| 21 | + break_chained_methods: boolean; |
| 22 | + eval_code: boolean; |
| 23 | + unescape_strings: boolean; |
| 24 | + wrap_line_length: number; |
| 25 | + wrap_attributes: string; |
| 26 | + wrap_attributes_indent_size: number; |
| 27 | + end_with_newline: boolean; |
28 | 28 | }): string;
|
29 | 29 | };
|
0 commit comments