ng2-qgrid
Version:
Angular Grid
20 lines (19 loc) • 713 B
TypeScript
import { BackdropService } from './../../plugins/backdrop/backdrop.service';
import { ElementRef, EventEmitter } from '@angular/core';
import { NgComponent } from '../../infrastructure/component/ng.component';
export declare class FileDirective extends NgComponent {
private backdropService;
private reader;
private _value;
private _label;
valueChange: EventEmitter<any>;
labelChange: EventEmitter<string>;
isValid: (name: string) => boolean;
value: any;
label: string;
constructor(backdropService: BackdropService, elementRef: ElementRef);
onUpload(e: any): void;
onLoadEnd(e: any): void;
hideBackdrop(): void;
revealBackdrop(): void;
}