• Overview
@angular/core

DirectiveWithBindings

interface

Represents a dynamically-created directive with bindings targeting it specifically.

API

    
      interface DirectiveWithBindings<T> {  type: Type<T>;  bindings: Binding[];}
    
    

type

Type<T>

Directive type that should be created.

bindings

Binding[]

Bindings that should be applied to the specific directive.

Jump to details