JSDoc for "uxp".storage.localFileSystem functions

I have been trying to figure out how I can get VSCode to show me the JSDoc for “uxp”.storage.localFileSystem functions. Right now I have:

const lfs = require('uxp').storage.localFileSystem;

which allows me to make calls to get files/folders using something like:

const folder = await lfs.getFolder()

Floating over the getFolder in that code just shows “Any” right now. Do those functions have JSDoc?

You could get types for typescript… but there are many pain points with file system types.

Not really typing I am trying to accomplish. Just the ability to see the JSDoc for the function without having to jump over to a browser and look at the online documentation every time I use one.