From 893c26e980ecb3ab0fa295f08130b9410f71a2b8 Mon Sep 17 00:00:00 2001 From: marvinscharle Date: Tue, 24 May 2016 23:05:32 +0200 Subject: [PATCH] Added type for EventEmitter --- components/file-upload/file-drop.directive.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/file-upload/file-drop.directive.ts b/components/file-upload/file-drop.directive.ts index 28225eb..a918adf 100644 --- a/components/file-upload/file-drop.directive.ts +++ b/components/file-upload/file-drop.directive.ts @@ -6,7 +6,7 @@ import { FileUploader } from './file-uploader.class'; export class FileDropDirective { @Input() public uploader:FileUploader; @Output() public fileOver:EventEmitter = new EventEmitter(); - @Output() public onFileDrop:EventEmitter = new EventEmitter(); + @Output() public onFileDrop:EventEmitter = new EventEmitter(); private element:ElementRef; public constructor(element:ElementRef) {