Hi Guys I’ve got a quick question — I’m a bit new to creating packages.
In my package, I have something like this:
export namespace Path {
export type value = 'AA' | 'BB' | 'CC';
}
I’m exporting Path from my index.ts.
Now my question is — is it possible for users of my package to completely override the value type inside the Path namespace? Basically, I want them to be able to define their own set of values. Is that doable?