Skip to content

Commit

Permalink
Merge pull request #42 from Gheoan/decorators-jsdoc
Browse files Browse the repository at this point in the history
doc(decorators): fix DecoratorApplicator's JSDoc
  • Loading branch information
EisenbergEffect authored Oct 13, 2016
2 parents 94b1637 + cb28efc commit 8dd67c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/decorators.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ interface DecoratorApplicator {
* Applies the decorators to the target.
* @param target The target.
* @param key If applying to a method, the member name.
* @param key If applying to a method, you may supply an initial descriptor to pass to the decorators.
* @param descriptor If applying to a method, you may supply an initial descriptor to pass to the decorators.
*/
on(target: any, key?: string, descriptor?: Object): any;
on(target: any, key?: string, descriptor?: PropertyDescriptor): any;
}

/**
Expand Down

0 comments on commit 8dd67c2

Please sign in to comment.