AngularTS
    Preparing search index...

    Interface ScopeElementConstructor<T>

    interface ScopeElementConstructor<T extends object = Record<string, unknown>> {
        new ScopeElementConstructor(): ScopeElement<T>;
        inputs?: WebComponentInputs;
        isolate?: boolean;
        scope?: T | (() => T);
        shadow?: boolean | ShadowRootInit;
        template?: string;
    }

    Type Parameters

    • T extends object = Record<string, unknown>
    Index

    Constructors

    Properties

    Declared DOM attributes/properties that sync into the scope.

    isolate?: boolean

    Use an isolate child scope instead of inheriting parent properties.

    scope?: T | (() => T)

    Initial scope state, or a factory returning it.

    shadow?: boolean | ShadowRootInit

    Enables shadow DOM, or passes ShadowRootInit options.

    template?: string

    Template compiled into the host or shadow root.