5 lines
104 B
TypeScript
Raw Normal View History

2017-06-20 13:46:49 +00:00
export class Diff {
static update(element: HTMLElement, html: string) {
element.innerHTML = html
}
}