Cleaning up type asignment

This commit is contained in:
2025-08-23 14:58:23 -05:00
parent 3c3a5d2f50
commit 73f25aae1c
11 changed files with 25 additions and 29 deletions

View File

@@ -16,7 +16,7 @@ import { NewtonFile } from '../types/file.type';
})
export class DndDirective {
@HostBinding('class.fileover') fileOver!: boolean;
@Output() fileDropped = new EventEmitter<any>();
@Output() fileDropped: EventEmitter<any> = new EventEmitter();
@HostListener('dragover', ['$event'])
onDragOver(evt: any) {