From 7a7e0748e3ad6d178f5a351bbb5c8ed896f7f833 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 3 Jul 2023 18:36:35 -0400 Subject: feat: upgrade to TypeScript 5.1.6 (#19695) Integrates https://github.com/denoland/TypeScript/pull/7 --- cli/tsc/dts/lib.es2015.core.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cli/tsc/dts/lib.es2015.core.d.ts') diff --git a/cli/tsc/dts/lib.es2015.core.d.ts b/cli/tsc/dts/lib.es2015.core.d.ts index ecd2e029e..1ca098d8a 100644 --- a/cli/tsc/dts/lib.es2015.core.d.ts +++ b/cli/tsc/dts/lib.es2015.core.d.ts @@ -56,10 +56,10 @@ interface Array { * @param target If target is negative, it is treated as length+target where length is the * length of the array. * @param start If start is negative, it is treated as length+start. If end is negative, it - * is treated as length+end. + * is treated as length+end. If start is omitted, `0` is used. * @param end If not specified, length of the this object is used as its default value. */ - copyWithin(target: number, start: number, end?: number): this; + copyWithin(target: number, start?: number, end?: number): this; } interface ArrayConstructor { -- cgit v1.2.3