banira
    Preparing search index...

    Interface RegistryLike

    The minimal registry surface these helpers rely on.

    interface RegistryLike {
        define(
            name: string,
            ctor: CustomElementConstructor,
            options?: ElementDefinitionOptions,
        ): void;
        get(name: string): unknown;
    }
    Index

    Methods

    Methods

    • Parameters

      • name: string
      • ctor: CustomElementConstructor
      • Optionaloptions: ElementDefinitionOptions

      Returns void