From b78f920ea09cef0ded4ca620e6f546b4e893e154 Mon Sep 17 00:00:00 2001 From: TypeScript Bot Date: Mon, 27 Mar 2023 14:01:09 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Pick=20PR=20#53365=20(Change=20P?= =?UTF-8?q?aramaterDecorator=20to=20allow=20...)=20into=20release-5.0=20(#?= =?UTF-8?q?53392)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Daniel Hritzkiv --- src/lib/decorators.legacy.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/decorators.legacy.d.ts b/src/lib/decorators.legacy.d.ts index 5638b44921b..2207e50bbda 100644 --- a/src/lib/decorators.legacy.d.ts +++ b/src/lib/decorators.legacy.d.ts @@ -1,4 +1,4 @@ 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;