codemelted.js Module
    Preparing search index...

    Type Alias CAttributeChangeCB

    CAttributeChangeCB: (name: string, old_value: string, new_value: string) => void

    Callback to handle any changes in observedAttributes within the base CHtmlComponent class.

    Type Declaration

      • (name: string, old_value: string, new_value: string): void
      • Parameters

        • name: string

          The name of the observable attribute fired.

        • old_value: string

          The old value associated with the attribute.

        • new_value: string

          The nw value to apply to the attribute.

        Returns void