In Angular2, how can I target an element within the HostListener decorator?
@HostListener(\'dragstart\', [\'$event\']) onDragStart(ev:Event) { co
@HostListener() only supports window, document, and body as global event targets, otherwise it only supports the components host element.
@HostListener()
window
document
body