I read that you can create extension methods in Typescript and I looked up some code
And put that code in my extension methods.ts but I get an error saying
You could extend the String interface, like this:
String
interface String { toNumber(): number; } String.prototype.toNumber = function(this: string) { return parseFloat(this); } const s = '123.45'; s.toNumber();