summaryrefslogtreecommitdiff
path: root/cli/dts/lib.es2019.string.d.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2021-12-10 09:12:21 +1100
committerGitHub <noreply@github.com>2021-12-10 09:12:21 +1100
commit345f0fbe5cdaa71af067c7072537f1823fe4ada5 (patch)
treec37062607fe23ef9d1826c1d43a10a712b827f3c /cli/dts/lib.es2019.string.d.ts
parenta3d024ac2ec8d73f7bf268823866d2342d1c1eb1 (diff)
feat(cli): update to TypeScript 4.5 (#12410)
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
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;
}