Skip to content
Advertisement

Prevent TypeScript public function calling a private function

I have this class:

JavaScript

I’m trying to extend the ResourceFactory class: I want to change the AlgoliaAppId name and prevent resetParams from running. (I cannot edit the original class).

Is there any way to override resetParams even though it’s private, or at least somehow monkey-patch the initTemplate method so it won’t run the line this.resetParams?

Advertisement

Answer

There’s no (clean) way to override a private method from a base class you don’t have control over. I tried some module augmentation to see if I could change the modifier to protected but didn’t have much luck; TypeScript seems to want all overloads to have the same modifier.

However, I was able to patch the prototype after the class declaration to hack in an overload, at the cost of including a @ts-expect-error comment. Seems to be the path of least resistance for fighting with the compiler. Here’s what an example subclass would look like:

JavaScript

Here’s a link to the playground as well.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement