We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d1e5ee commit 363f393Copy full SHA for 363f393
1 file changed
packages/common/decorators/core/apply-decorators.ts
@@ -7,15 +7,9 @@
7
*
8
* @publicApi
9
*/
10
-export declare type NestCustomDecorator = <TFunction extends Function, Y>(
11
- target: TFunction | Object,
12
- propertyKey?: string | symbol,
13
- descriptor?: TypedPropertyDescriptor<Y>,
14
-) => void;
15
-
16
export function applyDecorators(
17
...decorators: Array<ClassDecorator | MethodDecorator>
18
-): NestCustomDecorator {
+) {
19
return <TFunction extends Function, Y>(
20
target: TFunction | Object,
21
propertyKey?: string | symbol,
0 commit comments