Tutorial: Step 20: import { UploadFS } from 'meteor/jalik:ufs';

Hi All,

Trying to use step 20 of the angular tutorial… ran into a quick road block…I think.

import { UploadFS } from ‘meteor/jalik:ufs’;

Cannot file file path.

It shows that warning because of the lack of the typing file.

  • You can write your own typing file.
  • Or find one online (probably not exists right now)
  • Or delete import { UploadFS } from 'meteor/jalik:ufs';
    and just use:
    declare const UploadFS: any;
    to get rid of the warning.

Thanks… thought as much. A note would save some frustrations.

*** You are welcome!