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:
parent
de97687422
commit
14a3ade662
|
@ -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);
|
||||
|
|
|
@ -198,10 +198,10 @@ export class BrowserDomAdapter extends GenericBrowserDomAdapter {
|
|||
t.innerHTML = html;
|
||||
return t;
|
||||
}
|
||||
createElement(tagName: any /** TODO #9100 */, doc = document): HTMLElement {
|
||||
createElement(tagName: any /* TODO #9100 */, doc = document): HTMLElement {
|
||||
return doc.createElement(tagName);
|
||||
}
|
||||
createElementNS(ns: any /** TODO #9100 */, tagName: any /** TODO #9100 */, doc = document):
|
||||
createElementNS(ns: any /* TODO #9100 */, tagName: any /* TODO #9100 */, doc = document):
|
||||
Element {
|
||||
return doc.createElementNS(ns, tagName);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue