@arcmantle/lit-jsx
    Preparing search index...
    as: { bool: (value: boolean) => boolean; prop: <T>(value: T) => T }

    Type Declaration

    • bool: (value: boolean) => boolean

      Informs the compiler that the value should be bound as a boolean attribute.
      This allows the template to bind the value using the ? syntax, e.g. ?disabled=${true}
      This function call is removed during compilation, therefore it has no runtime effect.

    • prop: <T>(value: T) => T

      Informs the compiler that the value should be bound as a property value.
      This binds the expression value as a property, using the . syntax e.g .key=${value}
      This function call is removed during compilation, therefore it has no runtime effect.