feat: Upgrade to TypeScript 5.5.2 (#24326)

This commit upgrades TypeScript to 5.5.2.

https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/
This commit is contained in:
Bartek Iwańczuk 2024-07-03 15:09:54 +01:00 committed by GitHub
parent 496ea5903b
commit 3242e2718f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 191233 additions and 187186 deletions

View file

@ -17,12 +17,5 @@ and limitations under the License.
/// <reference no-default-lib="true"/>
declare namespace Intl {
interface NumberRangeFormatPart extends NumberFormatPart {
source: "startRange" | "endRange" | "shared";
}
interface NumberFormat {
formatRange(start: number | bigint, end: number | bigint): string;
formatRangeToParts(start: number | bigint, end: number | bigint): NumberRangeFormatPart[];
}
// Empty
}