Cookies concent notice

This site uses cookies from Google to deliver its services and to analyze traffic.
Learn more
Skip to main content
Say hello to Angular's future home!Check out Angular.devHome
/

DirectiveDebugMetadata

Partial metadata for a given directive instance. This information might be useful for debugging purposes or tooling. Currently only inputs and outputs metadata is available.

      
      interface DirectiveDebugMetadata {
  inputs: Record<string, string>
  outputs: Record<string, string>
}
    

Child interfaces

Properties

Property Description
inputs: Record<string, string>
outputs: Record<string, string>