14 lines
404 B
TypeScript
14 lines
404 B
TypeScript
|
export class BoostTileElement extends HTMLElement {
|
||
|
|
||
|
static observedAttributes = [ "data-boostid", "data-msgid", "data-author", "data-booster" ];
|
||
|
|
||
|
constructor() {
|
||
|
this.innerHTML = "<div class='boost_booster'></div><div class='boost_author'></div><div class='boost_content'></div>";
|
||
|
}
|
||
|
|
||
|
connectedCallback() {
|
||
|
}
|
||
|
|
||
|
attributeChangedCallback(attr: string, prev: string, next: string) {
|
||
|
}
|
||
|
}
|