@omnia/foundation
Version:
Provide omnia foundation typings and tooling work on client side for omnia extension.
15 lines (14 loc) • 433 B
TypeScript
import { ElementRef, OnInit, EventEmitter } from '@angular/core';
export interface IFileReadDirective {
omfFileRead: File;
}
export declare class FileRead implements OnInit {
private element;
private nativeElement;
omfFileRead: File;
omfFileReadChange: EventEmitter<File>;
onFileReadChange: EventEmitter<File>;
constructor(element: ElementRef);
ngOnInit(): void;
init: () => void;
}