@surface/custom-element
Version:
Provides support of directives and data binding on custom elements.
8 lines (7 loc) • 331 B
TypeScript
import type ICustomElement from "../interfaces/custom-element";
export declare const PROTOTYPE_METADATA: unique symbol;
export default class PrototypeMetadata {
attributeChangedCallback?: ICustomElement["attributeChangedCallback"];
static from(target: object): PrototypeMetadata;
inherit(): PrototypeMetadata;
}