Rodhos Soft

備忘録を兼ねた技術的なメモです。Rofhos SoftではiOSアプリ開発を中心としてAndroid, Webサービス等の開発を承っております。まずはご相談下さい。

既存メソッドの拡張

declare interface String {
    getCount(): number;
}

(String.prototype as any).getCount = function () {
        return this.length;
};

でimportする。