sparc - v1.0.1
    Preparing search index...

    ALL HTMD Element MUST implement these methods

    interface HTMDElementInterface {
        containerSelector?: string;
        isHTMD: true;
        remove: () => void;
        render: () => void;
        toString(): string;
    }

    Implemented by

    Index

    Properties

    containerSelector?: string

    A css selector to specify where the element should be rendered When nesting elements, the parent should be responsible for assigning the containerSelector on its children

    isHTMD: true

    Discriminator to identify classes that implement this interface

    isHTMDComponent

    remove: () => void

    Completely removes the element from the DOM

    render: () => void

    Method used to render the actual element and apply the necessary event handlers

    Methods