|
|
|
|
|
by zkldi
1890 days ago
|
|
> Do you namespace them yourself, or export an object under the name of the library (and therefore give up destructuring?) I know you can do this, but then you can't do import { Function1, Function2 } from "oak";
You could do import { Oak } from "./deps.ts";
const { Function1, Function2 } = Oak;
But that is still an awful workaround. |
|
Or perhaps you could do
and then you'd do I am not a fan of any of these.