chore(typescript): Changed double asterisks in #9100 to single asterisks
As in #9151, these comments are being read as JSDoc comments. This commit is smaller and only touches a few files that are causing errors.
This commit is contained in:
@ -248,7 +248,7 @@ var Reflect = global.Reflect;
|
||||
})();
|
||||
|
||||
export function makeDecorator(
|
||||
annotationCls: any /** TODO #9100 */,
|
||||
annotationCls: any /* TODO #9100 */,
|
||||
chainFn: (fn: Function) => void = null): (...args: any[]) => (cls: any) => any {
|
||||
function DecoratorFactory(objOrType: any /** TODO #9100 */): (cls: any) => any {
|
||||
var annotationInstance = new (<any>annotationCls)(objOrType);
|
||||
|
Reference in New Issue
Block a user