Skip to content

Commit d6e4408

Browse files
committed
fix indentation
1 parent 5e5eeeb commit d6e4408

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

src/lib/es2020.date.d.ts

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
/// <reference lib="es2020.intl" />
22

33
interface Date {
4-
/**
5-
* Converts a date and time to a string by using the current or specified locale.
6-
* @param locales A locale string, array of locale strings, Intl.Locale object, or array of Intl.Locale objects that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.
7-
* @param options An object that contains one or more properties that specify comparison options.
8-
*/
9-
toLocaleString(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
4+
/**
5+
* Converts a date and time to a string by using the current or specified locale.
6+
* @param locales A locale string, array of locale strings, Intl.Locale object, or array of Intl.Locale objects that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.
7+
* @param options An object that contains one or more properties that specify comparison options.
8+
*/
9+
toLocaleString(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
1010

11-
/**
12-
* Converts a date to a string by using the current or specified locale.
13-
* @param locales A locale string, array of locale strings, Intl.Locale object, or array of Intl.Locale objects that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.
14-
* @param options An object that contains one or more properties that specify comparison options.
15-
*/
16-
toLocaleDateString(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
11+
/**
12+
* Converts a date to a string by using the current or specified locale.
13+
* @param locales A locale string, array of locale strings, Intl.Locale object, or array of Intl.Locale objects that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.
14+
* @param options An object that contains one or more properties that specify comparison options.
15+
*/
16+
toLocaleDateString(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
1717

18-
/**
19-
* Converts a time to a string by using the current or specified locale.
20-
* @param locales A locale string, array of locale strings, Intl.Locale object, or array of Intl.Locale objects that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.
21-
* @param options An object that contains one or more properties that specify comparison options.
22-
*/
23-
toLocaleTimeString(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
18+
/**
19+
* Converts a time to a string by using the current or specified locale.
20+
* @param locales A locale string, array of locale strings, Intl.Locale object, or array of Intl.Locale objects that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.
21+
* @param options An object that contains one or more properties that specify comparison options.
22+
*/
23+
toLocaleTimeString(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
2424
}

src/lib/es2020.number.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/// <reference lib="es2020.intl" />
22

33
interface Number {
4-
/**
5-
* Converts a number to a string by using the current or specified locale.
6-
* @param locales A locale string, array of locale strings, Intl.Locale object, or array of Intl.Locale objects that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.
7-
* @param options An object that contains one or more properties that specify comparison options.
8-
*/
9-
toLocaleString(locales?: Intl.LocalesArgument, options?: Intl.NumberFormatOptions): string;
4+
/**
5+
* Converts a number to a string by using the current or specified locale.
6+
* @param locales A locale string, array of locale strings, Intl.Locale object, or array of Intl.Locale objects that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.
7+
* @param options An object that contains one or more properties that specify comparison options.
8+
*/
9+
toLocaleString(locales?: Intl.LocalesArgument, options?: Intl.NumberFormatOptions): string;
1010
}

0 commit comments

Comments
 (0)