We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5e7343f + 9dfb724 commit e1204a9Copy full SHA for e1204a9
src/lib/core.d.ts
@@ -1168,4 +1168,4 @@ interface TypedPropertyDescriptor<T> {
1168
declare type ClassDecorator = <TFunction extends Function>(target: TFunction) => TFunction | void;
1169
declare type PropertyDecorator = (target: Object, propertyKey: string | symbol) => void;
1170
declare type MethodDecorator = <T>(target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void;
1171
-declare type ParameterDecorator = (target: Function, propertyKey: string | symbol, parameterIndex: number) => void;
+declare type ParameterDecorator = (target: Object, propertyKey: string | symbol, parameterIndex: number) => void;
0 commit comments