summaryrefslogtreecommitdiff
path: root/cli/dts/lib.es2019.string.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/dts/lib.es2019.string.d.ts')
-rw-r--r--cli/dts/lib.es2019.string.d.ts10
1 files changed, 8 insertions, 2 deletions
diff --git a/cli/dts/lib.es2019.string.d.ts b/cli/dts/lib.es2019.string.d.ts
index 5322f2320..c7150833b 100644
--- a/cli/dts/lib.es2019.string.d.ts
+++ b/cli/dts/lib.es2019.string.d.ts
@@ -25,9 +25,15 @@ interface String {
/** Removes the leading white space and line terminator characters from a string. */
trimStart(): string;
- /** Removes the leading white space and line terminator characters from a string. */
+ /**
+ * Removes the leading white space and line terminator characters from a string.
+ * @deprecated A legacy feature for browser compatibility. Use `trimStart` instead
+ */
trimLeft(): string;
- /** Removes the trailing white space and line terminator characters from a string. */
+ /**
+ * Removes the trailing white space and line terminator characters from a string.
+ * @deprecated A legacy feature for browser compatibility. Use `trimEnd` instead
+ */
trimRight(): string;
}