@arcmantle/adapter-element
    Preparing search index...

    Interface TemplateInstance

    An updateable instance of a Template. Holds references to the Parts used to update the template instance.

    interface TemplateInstance {
        _$parts: (undefined | Part)[];
        _$template: Template;
        get _$isConnected(): boolean;
        get parentNode(): Node;
        _clone(options: undefined | RenderOptions): Node;
        _update(values: unknown[]): void;
    }

    Implements

    Index

    Properties

    _$parts: (undefined | Part)[]
    _$template: Template

    Accessors

    • get _$isConnected(): boolean

      Returns boolean

    • get parentNode(): Node

      Returns Node

    Methods

    • Parameters

      Returns Node

    • Parameters

      • values: unknown[]

      Returns void