mirror of
https://github.com/FJurmanovic/wallet-web.git
synced 2026-02-06 06:08:10 +00:00
15 lines
327 B
TypeScript
15 lines
327 B
TypeScript
import { controller, target } from "@github/catalyst";
|
|
import { BaseComponentElement } from "common/";
|
|
|
|
@controller
|
|
class AppModalElement extends BaseComponentElement {
|
|
@target modalElement: HTMLElement;
|
|
constructor() {
|
|
super();
|
|
}
|
|
|
|
elementConnected = (): void => {};
|
|
}
|
|
|
|
export type { AppModalElement };
|