@omnia/foundation
Version:
Provide omnia foundation typings and tooling work on client side for omnia extension.
17 lines (16 loc) • 511 B
TypeScript
import { ElementRef, EventEmitter, OnInit } from '@angular/core';
export interface IFileDropDirective {
omfFileDrop: (dropFile: File) => void;
enableDrop: boolean;
}
export declare class FileDrop implements OnInit {
private element;
private nativeElement;
omfFileDrop: Function;
enableDrop: boolean;
enableDropChange: EventEmitter<boolean>;
constructor(element: ElementRef);
ngOnInit(): void;
init: () => void;
private ensureJQueryDataTransferProp;
}