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

    Interface RepeatDirective

    The type of the class that powers this directive. Necessary for naming the directive's return type.

    interface RepeatDirective {
        get _$isConnected(): boolean;
        render<T>(items: Iterable<T>, template: ItemTemplate<T>): unknown[];
        render<T>(
            items: Iterable<T>,
            keyFn: KeyFn<T> | ItemTemplate<T>,
            template: ItemTemplate<T>,
        ): unknown[];
        update<T>(
            containerPart: ChildPart,
            __namedParameters: [
                Iterable<T, any, any>,
                KeyFn<T> | ItemTemplate<T>,
                ItemTemplate<T>,
            ],
        ): unknown[] | typeof noChange;
    }

    Hierarchy (View Summary)

    Index

    Accessors

    Methods

    Accessors

    • get _$isConnected(): boolean

      Returns boolean

    Methods

    • Type Parameters

      • T

      Parameters

      Returns unknown[]

    • Type Parameters

      • T

      Parameters

      Returns unknown[]