UNPKG

webcomp-ts

Version:

Base class for web components has basic boilerplate code to simplify custom element implementation

11 lines (10 loc) 343 B
import { WebComp } from "../web-comp.js"; export declare class TodoTask extends WebComp { constructor(); task: string; done: boolean; static readonly observedAttributes: string[]; protected attributeChangedCallback(name: string, oldval: string, newval: string): void; readonly html: string; readonly css: string; }