javascript 中 String.prototype.format = functions(){} . 这样就行了,
转到ts中就不会了.. 求解
String.prototype['format']=function(){}
but,不建议你使用这种原型扩展的方式
interface String { format(): string; } String.prototype.format= function() { return ""; }
https://stackoverflow.com/questions/13897659/extending-functionality-in-typescript