Fixed: angular2 beta

This commit is contained in:
buchslava
2016-02-02 18:42:21 +02:00
parent 468fe762b1
commit 16350eb5fb
47 changed files with 41696 additions and 26 deletions

12
components/file-upload/file-select.d.ts vendored Normal file
View File

@@ -0,0 +1,12 @@
import { ElementRef } from 'angular2/core';
import { FileUploader } from './file-uploader';
export declare class FileSelect {
private element;
uploader: FileUploader;
constructor(element: ElementRef);
getOptions(): any;
getFilters(): void;
isEmptyAfterSelection(): boolean;
onChange(): void;
}
export declare const fileUpload: Array<any>;