wKoza / ngx-upload

Ngx-upload is an upload module for Angular Ivy ready
30 stars 15 forks source link

Mime type #74

Closed ghten closed 4 years ago

ghten commented 4 years ago

Hi,

It is possible in ngx-upload to accept all types of files.

Thanks

wKoza commented 4 years ago

Hi, Normally, if you don't specify the accept option, ngx-upload doesn't have to fllter your files; Otherwise, you can add the value value '*' like this:

optionsInput: InputFileOptions = {
  multiple: true,
  accept: ['*']
};
ghten commented 4 years ago

Hi,

I have this error

Type '"*"' is not assignable to type 'MineTypeEnum'.

Thanks

wKoza commented 4 years ago

Indeed, I've just released a new version with this MineType.