既存メソッドの拡張
declare interface String { getCount(): number; } (String.prototype as any).getCount = function () { return this.length; };
でimportする。
declare interface String { getCount(): number; } (String.prototype as any).getCount = function () { return this.length; };
でimportする。