turbodombuilder - v0.9.66
    Preparing search index...

    Type Alias RegistryEntry

    Represents a single entry in the TurboDom class registry, as stored and returned by findRegistered and related query functions.

    type RegistryEntry = {
        constructor: new (...args: any[]) => any;
        category: RegistryCategory | string;
        tag?: string;
        name: string;
    }
    Index

    Properties

    constructor: new (...args: any[]) => any

    The registered class constructor.

    category: RegistryCategory | string

    The category the class was registered under, either explicitly provided or inferred from its inheritance chain.

    tag?: string

    The custom element tag name associated with this class. Only present for classes registered as custom HTML elements via define.

    name: string

    The registered name of the class, used as the registry key. Typically the class name as passed to define.