mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Merge branch 'master' of https://github.com/Microsoft/TypeScript into feature/eslint
This commit is contained in:
Vendored
+2
-2
@@ -466,13 +466,13 @@ interface String {
|
||||
toLowerCase(): string;
|
||||
|
||||
/** Converts all alphabetic characters to lowercase, taking into account the host environment's current locale. */
|
||||
toLocaleLowerCase(): string;
|
||||
toLocaleLowerCase(locales?: string | string[]): string;
|
||||
|
||||
/** Converts all the alphabetic characters in a string to uppercase. */
|
||||
toUpperCase(): string;
|
||||
|
||||
/** Returns a string where all alphabetic characters have been converted to uppercase, taking into account the host environment's current locale. */
|
||||
toLocaleUpperCase(): string;
|
||||
toLocaleUpperCase(locales?: string | string[]): string;
|
||||
|
||||
/** Removes the leading and trailing white space and line terminator characters from a string. */
|
||||
trim(): string;
|
||||
|
||||
Reference in New Issue
Block a user