webcomp-ts
Version:
Base class for web components has basic boilerplate code to simplify custom element implementation
9 lines (8 loc) • 316 B
TypeScript
import { WebComp } from "../web-comp.js";
export declare class TodoClock extends WebComp {
readonly html: string;
time: string;
protected animation(): boolean;
static readonly observedAttributes: string[];
protected attributeChangedCallback(name: string, oldval: string, newval: string): void;
}