I'm unable to find and use the getNameInfo method for some reason.
import blockstack from 'npm:blockstack';
let name = 'markmhendrickson.id';
blockstack.getNameInfo(name).then((info) => {
console.log('info', info);
});
This results in the error Uncaught TypeError: _npmBlockstack.default.getNameInfo is not a function and when I console log the entire blockstack module (loaded with ember-browserify) for inspection, I don't see it in the list of properties alphabetically:

You need to use blockstack.config.network.getNameInfo See also
https://github.com/blockstack/blockstack.js/issues/555#issuecomment-441011884
Much thanks. I see the other issue is intended to update documentation related to this method, but does it make much sense that this method (and others) are under a config path? I would expect blockstack.network.getNameInfo if it's intended to be organized with other "network" methods. But "config" is confusing to me.
Ooh, yeah, we have a feature request for this:
Closing this in favor of #449