I'm not opposed to merging this but ideally there would be a way to prevent people from using these private methods to begin with. I should be using private in TypeScript but that makes certain things a pain, aside from that I was hoping that having an underscore would discourage people from using them...
What probably needs to happen is that I need to either remove them from the public API type information or just refactor them as utility functions...
I'm not opposed to merging this but ideally there would be a way to prevent people from using these private methods to begin with. I should be using
private
in TypeScript but that makes certain things a pain, aside from that I was hoping that having an underscore would discourage people from using them...What probably needs to happen is that I need to either remove them from the public API type information or just refactor them as utility functions...