Merge pull request #31831 from shibukawa/patch-1

Fix es2019.string.d.ts
This commit is contained in:
Daniel Rosenwasser
2019-06-10 16:13:38 -07:00
committed by GitHub

View File

@@ -5,9 +5,9 @@ interface String {
/** Removes the leading white space and line terminator characters from a string. */
trimStart(): string;
/** Removes the trailing white space and line terminator characters from a string. */
/** Removes the leading white space and line terminator characters from a string. */
trimLeft(): string;
/** Removes the leading white space and line terminator characters from a string. */
/** Removes the trailing white space and line terminator characters from a string. */
trimRight(): string;
}