mirror of
https://github.com/kevinveenbirkenbach/roulette-wheel.git
synced 2025-04-05 07:14:15 +02:00
15 lines
315 B
TypeScript
15 lines
315 B
TypeScript
export abstract class Component<T extends HTMLElement> {
|
|
el: T;
|
|
|
|
constructor(el: T){
|
|
this.el = el;
|
|
}
|
|
|
|
removeChildren() {
|
|
if(this.el.childNodes.length > 0){
|
|
while(this.el.firstChild){
|
|
this.el.removeChild(this.el.firstChild);
|
|
}
|
|
}
|
|
}
|
|
} |