diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2023-09-09 14:03:21 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-09 15:03:21 -0400 |
| commit | c228adc27d5b605286d3a9ca924e657308aebb74 (patch) | |
| tree | fdc0e814bdaeceb231565ee8e0324c7447c39212 /cli/tsc/dts/lib.es2015.core.d.ts | |
| parent | f75a17521df053218c0c2b5fb93c5354f9c8f274 (diff) | |
feat: TypeScript 5.2 (#20425)
Without `using` declarations or decorator metadata (waiting for that in
v8).
Diffstat (limited to 'cli/tsc/dts/lib.es2015.core.d.ts')
| -rw-r--r-- | cli/tsc/dts/lib.es2015.core.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tsc/dts/lib.es2015.core.d.ts b/cli/tsc/dts/lib.es2015.core.d.ts index 1ca098d8a..ecd2e029e 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<T> { * @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. If start is omitted, `0` is used. + * is treated as length+end. * @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 { |
