mirror of
https://github.com/koloml/furbooru-tagging-assistant.git
synced 2025-12-24 07:12:57 +00:00
Making component not abstract to run tests on it
This commit is contained in:
@@ -3,7 +3,7 @@ import { bindComponent } from "$lib/components/base/component-utils";
|
||||
type ComponentEventListener<EventName extends keyof HTMLElementEventMap> =
|
||||
(this: HTMLElement, event: HTMLElementEventMap[EventName]) => void;
|
||||
|
||||
export abstract class BaseComponent<ContainerType extends HTMLElement = HTMLElement> {
|
||||
export class BaseComponent<ContainerType extends HTMLElement = HTMLElement> {
|
||||
readonly #container: ContainerType;
|
||||
|
||||
#isInitialized = false;
|
||||
|
||||
Reference in New Issue
Block a user