diff --git a/src/lib/core.d.ts b/src/lib/core.d.ts index 2096fa839dfcc..3d830ae5203cb 100644 --- a/src/lib/core.d.ts +++ b/src/lib/core.d.ts @@ -1168,4 +1168,4 @@ interface TypedPropertyDescriptor { 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: Function, propertyKey: string | symbol, parameterIndex: number) => void; +declare type ParameterDecorator = (target: Object, propertyKey: string | symbol, parameterIndex: number) => void;