Hi, sorry for the dumb question.
strophe.js has the following .d.ts:
declare global {
namespace Strophe {
class Connection {
For the life of me, I can't figure out how to import from this. Things that didn't work:
import { Strophe } from 'strophe.js'; // no exported member 'Strophe'
import { Connection } from 'strophe.js'; // no exported member 'Connection'
import Strophe from 'strophe.js'; // 'Status' does not exist on type 'typeof import(...
import * as Strophe from 'strophe.js'; // TS can't find a useful member on the returned object, though node can
What do I do to get at members of this module?