From 345f0fbe5cdaa71af067c7072537f1823fe4ada5 Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Fri, 10 Dec 2021 09:12:21 +1100 Subject: feat(cli): update to TypeScript 4.5 (#12410) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bartek IwaƄczuk --- cli/dts/lib.es2019.string.d.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'cli/dts/lib.es2019.string.d.ts') 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; } -- cgit v1.2.3