Title explains the question. How would you import them both and preserve the d3.* namespace?
If bundling the modules, I’d include:
export {select, selectAll} from "d3-selection";
export * from "d3-selection-multi";
export * from "d3-timer";
In my index.js file, assigning one namespace to all the exports. How can I do the same with Observable when it uses something more like CJS syntax for imports?