Fix for zone.js error in Safari, Added Typings #221

Merged
marvinscharle merged 9 commits from development into development 2016-06-02 13:17:25 +00:00
Showing only changes of commit 893c26e980 - Show all commits
@@ -6,7 +6,7 @@ import { FileUploader } from './file-uploader.class';
export class FileDropDirective {
@Input() public uploader:FileUploader;
@Output() public fileOver:EventEmitter<any> = new EventEmitter();
@Output() public onFileDrop:EventEmitter<File[]> = new EventEmitter();
@Output() public onFileDrop:EventEmitter<File[]> = new EventEmitter<File[]>();
private element:ElementRef;
public constructor(element:ElementRef) {