1
0
Fork 0
mirror of https://github.com/archtechx/alpine-typescript.git synced 2025-12-12 06:44:03 +00:00
This commit is contained in:
Samuel Štancl 2021-02-28 16:35:10 +01:00
parent c12e54f4a2
commit 19e75e76ce
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ declare const window: any;
type ComponentConstructor = (...args: any[]) => object;
export class AlpineComponent {
export abstract class AlpineComponent {
/** Retrieve the root component DOM node. */
$el?: HTMLElement;