import { MultipleDocumentsPicker } from '@awesome-cordova-plugins/multiple-document-picker/ngx';
constructor(private multipleDocumentsPicker: MultipleDocumentsPicker) { }
...
this.multipleDocumentsPicker.pick(1)
  .then((res: any) => console.log(res))
  .catch((error: any) => console.error(error));