For what it's worth, samples from Microsoft include this comment style. From the Parallax example:
constructor(scrollableContent: HTMLElement, perspective: number) {
this.perspective = perspective;
this.surface = [];
this.content = scrollableContent;
$(scrollableContent).scroll((event: JQueryEventObject) => {
this.onContainerScroll(event);
});
}