From 7ec45770c875b27f71e82138b2ac03610ad3b47b Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 31 Mar 2023 13:09:04 -0400 Subject: fix: upgrade to TypeScript 5.0.3 (#18532) --- cli/tsc/dts/lib.decorators.legacy.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/tsc/dts') diff --git a/cli/tsc/dts/lib.decorators.legacy.d.ts b/cli/tsc/dts/lib.decorators.legacy.d.ts index 39bf2413e..26fbcb526 100644 --- a/cli/tsc/dts/lib.decorators.legacy.d.ts +++ b/cli/tsc/dts/lib.decorators.legacy.d.ts @@ -19,4 +19,4 @@ and limitations under the License. declare type ClassDecorator = (target: TFunction) => TFunction | void; declare type PropertyDecorator = (target: Object, propertyKey: string | symbol) => void; declare type MethodDecorator = (target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor) => TypedPropertyDescriptor | void; -declare type ParameterDecorator = (target: Object, propertyKey: string | symbol, parameterIndex: number) => void; +declare type ParameterDecorator = (target: Object, propertyKey: string | symbol | undefined, parameterIndex: number) => void; -- cgit v1.2.3