差分比較ツール
2つのテキストの内容を比較するためのツールです。テキストファイルをドラッグ&ドロップしても読み込むことができます。
変更前
1
export default interface Contents {2
items: ContentsItem[]3
}4
5
export type ItemType = 'big' | 'middle' | 'small'6
7
export interface ContentsItem {8
name: string9
type: ItemTypes10
href: string11
}変更後
1
export default interface Contents {2
items: ContentsItem[]3
}4
5
export type ItemType = 'big' | 'middle' | 'small'6
7
export interface ContentsItem {8
type: ItemType,9
href: string10
new_type: string11
}