UNPKG

ngx-mat-file-input

Version:

This is a fork of the file input management for Angular Material initially maintained on https://merlosy.github.io/ngx-material-file-input/

12 lines (11 loc) 252 B
/** * The files to be uploaded */ export declare class FileInput { private _files; private delimiter; private _fileNames; constructor(_files: File[] | null, delimiter?: string); get files(): File[]; get fileNames(): string; }