5 lines
104 B
TypeScript
5 lines
104 B
TypeScript
|
export class Diff {
|
||
|
static update(element: HTMLElement, html: string) {
|
||
|
element.innerHTML = html
|
||
|
}
|
||
|
}
|